1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
<meta name="generator" content="Doxygen 1.9.1"/>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<title>libfuse: fuse_lowlevel_ops Struct Reference</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="dynsections.js"></script>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td id="projectalign" style="padding-left: 0.5em;">
<div id="projectname">libfuse
</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- end header part -->
<!-- Generated by Doxygen 1.9.1 -->
<script type="text/javascript" src="menudata.js"></script>
<script type="text/javascript" src="menu.js"></script>
<script type="text/javascript">
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
$(function() {
initMenu('',false,false,'search.php','Search');
});
/* @license-end */</script>
<div id="main-nav"></div>
</div><!-- top -->
<div class="header">
<div class="summary">
<a href="#pub-attribs">Data Fields</a> </div>
<div class="headertitle">
<div class="title">fuse_lowlevel_ops Struct Reference</div> </div>
</div><!--header-->
<div class="contents">
<p><code>#include <<a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h_source.html">fuse_lowlevel.h</a>></code></p>
<table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="pub-attribs"></a>
Data Fields</h2></td></tr>
<tr class="memitem:ab6fa0b9edb5b002cd1502c969c887329"><td class="memItemLeft" align="right" valign="top">void(* </td><td class="memItemRight" valign="bottom"><a class="el" href="structfuse__lowlevel__ops.html#ab6fa0b9edb5b002cd1502c969c887329">init</a> )(void *userdata, struct <a class="el" href="structfuse__conn__info.html">fuse_conn_info</a> *conn)</td></tr>
<tr class="separator:ab6fa0b9edb5b002cd1502c969c887329"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a963181c33f58859fd060b0ccde2f5ec3"><td class="memItemLeft" align="right" valign="top">void(* </td><td class="memItemRight" valign="bottom"><a class="el" href="structfuse__lowlevel__ops.html#a963181c33f58859fd060b0ccde2f5ec3">destroy</a> )(void *userdata)</td></tr>
<tr class="separator:a963181c33f58859fd060b0ccde2f5ec3"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ae8a2850c71bec355ad347413fa73f7c2"><td class="memItemLeft" align="right" valign="top">void(* </td><td class="memItemRight" valign="bottom"><a class="el" href="structfuse__lowlevel__ops.html#ae8a2850c71bec355ad347413fa73f7c2">lookup</a> )(<a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h.html#a33e2aa4a8905a05397292ae047cd2257">fuse_req_t</a> req, <a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h.html#ad119a72f00b4cd2e4a500fd3364ae1e2">fuse_ino_t</a> parent, const char *name)</td></tr>
<tr class="separator:ae8a2850c71bec355ad347413fa73f7c2"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a97de3962fc55f136c6bd48183705dbe8"><td class="memItemLeft" align="right" valign="top">void(* </td><td class="memItemRight" valign="bottom"><a class="el" href="structfuse__lowlevel__ops.html#a97de3962fc55f136c6bd48183705dbe8">forget</a> )(<a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h.html#a33e2aa4a8905a05397292ae047cd2257">fuse_req_t</a> req, <a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h.html#ad119a72f00b4cd2e4a500fd3364ae1e2">fuse_ino_t</a> ino, uint64_t nlookup)</td></tr>
<tr class="separator:a97de3962fc55f136c6bd48183705dbe8"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a994c316fa7a1ca33525a4540675f6b47"><td class="memItemLeft" align="right" valign="top">void(* </td><td class="memItemRight" valign="bottom"><a class="el" href="structfuse__lowlevel__ops.html#a994c316fa7a1ca33525a4540675f6b47">getattr</a> )(<a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h.html#a33e2aa4a8905a05397292ae047cd2257">fuse_req_t</a> req, <a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h.html#ad119a72f00b4cd2e4a500fd3364ae1e2">fuse_ino_t</a> ino, struct <a class="el" href="structfuse__file__info.html">fuse_file_info</a> *fi)</td></tr>
<tr class="separator:a994c316fa7a1ca33525a4540675f6b47"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a6a95408dd79575df7f6c64e55f1e973b"><td class="memItemLeft" align="right" valign="top">void(* </td><td class="memItemRight" valign="bottom"><a class="el" href="structfuse__lowlevel__ops.html#a6a95408dd79575df7f6c64e55f1e973b">setattr</a> )(<a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h.html#a33e2aa4a8905a05397292ae047cd2257">fuse_req_t</a> req, <a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h.html#ad119a72f00b4cd2e4a500fd3364ae1e2">fuse_ino_t</a> ino, struct stat *attr, int to_set, struct <a class="el" href="structfuse__file__info.html">fuse_file_info</a> *fi)</td></tr>
<tr class="separator:a6a95408dd79575df7f6c64e55f1e973b"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ae1032649069ae28d46bde76a40743fcf"><td class="memItemLeft" align="right" valign="top">void(* </td><td class="memItemRight" valign="bottom"><a class="el" href="structfuse__lowlevel__ops.html#ae1032649069ae28d46bde76a40743fcf">readlink</a> )(<a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h.html#a33e2aa4a8905a05397292ae047cd2257">fuse_req_t</a> req, <a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h.html#ad119a72f00b4cd2e4a500fd3364ae1e2">fuse_ino_t</a> ino)</td></tr>
<tr class="separator:ae1032649069ae28d46bde76a40743fcf"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a5cd44aa96291fa366d4ef40e2d1d1d76"><td class="memItemLeft" align="right" valign="top">void(* </td><td class="memItemRight" valign="bottom"><a class="el" href="structfuse__lowlevel__ops.html#a5cd44aa96291fa366d4ef40e2d1d1d76">mknod</a> )(<a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h.html#a33e2aa4a8905a05397292ae047cd2257">fuse_req_t</a> req, <a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h.html#ad119a72f00b4cd2e4a500fd3364ae1e2">fuse_ino_t</a> parent, const char *name, mode_t mode, dev_t rdev)</td></tr>
<tr class="separator:a5cd44aa96291fa366d4ef40e2d1d1d76"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a23af0f6683447112848d9f1731e021d7"><td class="memItemLeft" align="right" valign="top">void(* </td><td class="memItemRight" valign="bottom"><a class="el" href="structfuse__lowlevel__ops.html#a23af0f6683447112848d9f1731e021d7">mkdir</a> )(<a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h.html#a33e2aa4a8905a05397292ae047cd2257">fuse_req_t</a> req, <a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h.html#ad119a72f00b4cd2e4a500fd3364ae1e2">fuse_ino_t</a> parent, const char *name, mode_t mode)</td></tr>
<tr class="separator:a23af0f6683447112848d9f1731e021d7"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:afb6e186f5cbe806d3838a51c112a97ee"><td class="memItemLeft" align="right" valign="top">void(* </td><td class="memItemRight" valign="bottom"><a class="el" href="structfuse__lowlevel__ops.html#afb6e186f5cbe806d3838a51c112a97ee">unlink</a> )(<a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h.html#a33e2aa4a8905a05397292ae047cd2257">fuse_req_t</a> req, <a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h.html#ad119a72f00b4cd2e4a500fd3364ae1e2">fuse_ino_t</a> parent, const char *name)</td></tr>
<tr class="separator:afb6e186f5cbe806d3838a51c112a97ee"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a3cbf1eaf4366aed47fa5d991ea5ff0d5"><td class="memItemLeft" align="right" valign="top">void(* </td><td class="memItemRight" valign="bottom"><a class="el" href="structfuse__lowlevel__ops.html#a3cbf1eaf4366aed47fa5d991ea5ff0d5">rmdir</a> )(<a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h.html#a33e2aa4a8905a05397292ae047cd2257">fuse_req_t</a> req, <a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h.html#ad119a72f00b4cd2e4a500fd3364ae1e2">fuse_ino_t</a> parent, const char *name)</td></tr>
<tr class="separator:a3cbf1eaf4366aed47fa5d991ea5ff0d5"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a30455cc58397c5a45434492d93a71af4"><td class="memItemLeft" align="right" valign="top">void(* </td><td class="memItemRight" valign="bottom"><a class="el" href="structfuse__lowlevel__ops.html#a30455cc58397c5a45434492d93a71af4">symlink</a> )(<a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h.html#a33e2aa4a8905a05397292ae047cd2257">fuse_req_t</a> req, const char *<a class="el" href="structfuse__lowlevel__ops.html#a406798b81f44a8b54f188455c31b9be8">link</a>, <a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h.html#ad119a72f00b4cd2e4a500fd3364ae1e2">fuse_ino_t</a> parent, const char *name)</td></tr>
<tr class="separator:a30455cc58397c5a45434492d93a71af4"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a46d76dee9cf1741c364e5be955885248"><td class="memItemLeft" align="right" valign="top">void(* </td><td class="memItemRight" valign="bottom"><a class="el" href="structfuse__lowlevel__ops.html#a46d76dee9cf1741c364e5be955885248">rename</a> )(<a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h.html#a33e2aa4a8905a05397292ae047cd2257">fuse_req_t</a> req, <a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h.html#ad119a72f00b4cd2e4a500fd3364ae1e2">fuse_ino_t</a> parent, const char *name, <a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h.html#ad119a72f00b4cd2e4a500fd3364ae1e2">fuse_ino_t</a> newparent, const char *newname, unsigned int flags)</td></tr>
<tr class="separator:a46d76dee9cf1741c364e5be955885248"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a406798b81f44a8b54f188455c31b9be8"><td class="memItemLeft" align="right" valign="top">void(* </td><td class="memItemRight" valign="bottom"><a class="el" href="structfuse__lowlevel__ops.html#a406798b81f44a8b54f188455c31b9be8">link</a> )(<a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h.html#a33e2aa4a8905a05397292ae047cd2257">fuse_req_t</a> req, <a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h.html#ad119a72f00b4cd2e4a500fd3364ae1e2">fuse_ino_t</a> ino, <a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h.html#ad119a72f00b4cd2e4a500fd3364ae1e2">fuse_ino_t</a> newparent, const char *newname)</td></tr>
<tr class="separator:a406798b81f44a8b54f188455c31b9be8"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aab2f5186ecaa817e75ed443165288218"><td class="memItemLeft" align="right" valign="top">void(* </td><td class="memItemRight" valign="bottom"><a class="el" href="structfuse__lowlevel__ops.html#aab2f5186ecaa817e75ed443165288218">open</a> )(<a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h.html#a33e2aa4a8905a05397292ae047cd2257">fuse_req_t</a> req, <a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h.html#ad119a72f00b4cd2e4a500fd3364ae1e2">fuse_ino_t</a> ino, struct <a class="el" href="structfuse__file__info.html">fuse_file_info</a> *fi)</td></tr>
<tr class="separator:aab2f5186ecaa817e75ed443165288218"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ab7b740dccdc6ddc388cdcd7897e4c2e3"><td class="memItemLeft" align="right" valign="top">void(* </td><td class="memItemRight" valign="bottom"><a class="el" href="structfuse__lowlevel__ops.html#ab7b740dccdc6ddc388cdcd7897e4c2e3">read</a> )(<a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h.html#a33e2aa4a8905a05397292ae047cd2257">fuse_req_t</a> req, <a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h.html#ad119a72f00b4cd2e4a500fd3364ae1e2">fuse_ino_t</a> ino, size_t size, off_t off, struct <a class="el" href="structfuse__file__info.html">fuse_file_info</a> *fi)</td></tr>
<tr class="separator:ab7b740dccdc6ddc388cdcd7897e4c2e3"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a09cc5c1078cfb909513b5ca27464f53a"><td class="memItemLeft" align="right" valign="top">void(* </td><td class="memItemRight" valign="bottom"><a class="el" href="structfuse__lowlevel__ops.html#a09cc5c1078cfb909513b5ca27464f53a">write</a> )(<a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h.html#a33e2aa4a8905a05397292ae047cd2257">fuse_req_t</a> req, <a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h.html#ad119a72f00b4cd2e4a500fd3364ae1e2">fuse_ino_t</a> ino, const char *buf, size_t size, off_t off, struct <a class="el" href="structfuse__file__info.html">fuse_file_info</a> *fi)</td></tr>
<tr class="separator:a09cc5c1078cfb909513b5ca27464f53a"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:af6c2540969d60626f1c18e0012de393a"><td class="memItemLeft" align="right" valign="top">void(* </td><td class="memItemRight" valign="bottom"><a class="el" href="structfuse__lowlevel__ops.html#af6c2540969d60626f1c18e0012de393a">flush</a> )(<a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h.html#a33e2aa4a8905a05397292ae047cd2257">fuse_req_t</a> req, <a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h.html#ad119a72f00b4cd2e4a500fd3364ae1e2">fuse_ino_t</a> ino, struct <a class="el" href="structfuse__file__info.html">fuse_file_info</a> *fi)</td></tr>
<tr class="separator:af6c2540969d60626f1c18e0012de393a"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:abc49c6310cd0eaddf116988426ca21d2"><td class="memItemLeft" align="right" valign="top">void(* </td><td class="memItemRight" valign="bottom"><a class="el" href="structfuse__lowlevel__ops.html#abc49c6310cd0eaddf116988426ca21d2">release</a> )(<a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h.html#a33e2aa4a8905a05397292ae047cd2257">fuse_req_t</a> req, <a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h.html#ad119a72f00b4cd2e4a500fd3364ae1e2">fuse_ino_t</a> ino, struct <a class="el" href="structfuse__file__info.html">fuse_file_info</a> *fi)</td></tr>
<tr class="separator:abc49c6310cd0eaddf116988426ca21d2"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a81ff5a93a2edd71b063c2e827e0fd8d8"><td class="memItemLeft" align="right" valign="top">void(* </td><td class="memItemRight" valign="bottom"><a class="el" href="structfuse__lowlevel__ops.html#a81ff5a93a2edd71b063c2e827e0fd8d8">fsync</a> )(<a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h.html#a33e2aa4a8905a05397292ae047cd2257">fuse_req_t</a> req, <a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h.html#ad119a72f00b4cd2e4a500fd3364ae1e2">fuse_ino_t</a> ino, int datasync, struct <a class="el" href="structfuse__file__info.html">fuse_file_info</a> *fi)</td></tr>
<tr class="separator:a81ff5a93a2edd71b063c2e827e0fd8d8"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a57a2c2d826fe11dd005d3275c3028d5e"><td class="memItemLeft" align="right" valign="top">void(* </td><td class="memItemRight" valign="bottom"><a class="el" href="structfuse__lowlevel__ops.html#a57a2c2d826fe11dd005d3275c3028d5e">opendir</a> )(<a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h.html#a33e2aa4a8905a05397292ae047cd2257">fuse_req_t</a> req, <a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h.html#ad119a72f00b4cd2e4a500fd3364ae1e2">fuse_ino_t</a> ino, struct <a class="el" href="structfuse__file__info.html">fuse_file_info</a> *fi)</td></tr>
<tr class="separator:a57a2c2d826fe11dd005d3275c3028d5e"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:af1ef8e59e0cb0b02dc0e406898aeaa51"><td class="memItemLeft" align="right" valign="top">void(* </td><td class="memItemRight" valign="bottom"><a class="el" href="structfuse__lowlevel__ops.html#af1ef8e59e0cb0b02dc0e406898aeaa51">readdir</a> )(<a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h.html#a33e2aa4a8905a05397292ae047cd2257">fuse_req_t</a> req, <a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h.html#ad119a72f00b4cd2e4a500fd3364ae1e2">fuse_ino_t</a> ino, size_t size, off_t off, struct <a class="el" href="structfuse__file__info.html">fuse_file_info</a> *fi)</td></tr>
<tr class="separator:af1ef8e59e0cb0b02dc0e406898aeaa51"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:abfc54ffe5fa5778fc273a6666494d802"><td class="memItemLeft" align="right" valign="top">void(* </td><td class="memItemRight" valign="bottom"><a class="el" href="structfuse__lowlevel__ops.html#abfc54ffe5fa5778fc273a6666494d802">releasedir</a> )(<a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h.html#a33e2aa4a8905a05397292ae047cd2257">fuse_req_t</a> req, <a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h.html#ad119a72f00b4cd2e4a500fd3364ae1e2">fuse_ino_t</a> ino, struct <a class="el" href="structfuse__file__info.html">fuse_file_info</a> *fi)</td></tr>
<tr class="separator:abfc54ffe5fa5778fc273a6666494d802"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ab2e3a9ad8b264daec4c254f5b064dfb3"><td class="memItemLeft" align="right" valign="top">void(* </td><td class="memItemRight" valign="bottom"><a class="el" href="structfuse__lowlevel__ops.html#ab2e3a9ad8b264daec4c254f5b064dfb3">fsyncdir</a> )(<a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h.html#a33e2aa4a8905a05397292ae047cd2257">fuse_req_t</a> req, <a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h.html#ad119a72f00b4cd2e4a500fd3364ae1e2">fuse_ino_t</a> ino, int datasync, struct <a class="el" href="structfuse__file__info.html">fuse_file_info</a> *fi)</td></tr>
<tr class="separator:ab2e3a9ad8b264daec4c254f5b064dfb3"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aeea156121a28b519e284451721fb7d25"><td class="memItemLeft" align="right" valign="top">void(* </td><td class="memItemRight" valign="bottom"><a class="el" href="structfuse__lowlevel__ops.html#aeea156121a28b519e284451721fb7d25">statfs</a> )(<a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h.html#a33e2aa4a8905a05397292ae047cd2257">fuse_req_t</a> req, <a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h.html#ad119a72f00b4cd2e4a500fd3364ae1e2">fuse_ino_t</a> ino)</td></tr>
<tr class="separator:aeea156121a28b519e284451721fb7d25"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ab80c4081204c07a423c3c88b116f3086"><td class="memItemLeft" align="right" valign="top">void(* </td><td class="memItemRight" valign="bottom"><a class="el" href="structfuse__lowlevel__ops.html#ab80c4081204c07a423c3c88b116f3086">setxattr</a> )(<a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h.html#a33e2aa4a8905a05397292ae047cd2257">fuse_req_t</a> req, <a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h.html#ad119a72f00b4cd2e4a500fd3364ae1e2">fuse_ino_t</a> ino, const char *name, const char *value, size_t size, int flags)</td></tr>
<tr class="separator:ab80c4081204c07a423c3c88b116f3086"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aaed65c2801391c35ad0c60e73a0c43d9"><td class="memItemLeft" align="right" valign="top">void(* </td><td class="memItemRight" valign="bottom"><a class="el" href="structfuse__lowlevel__ops.html#aaed65c2801391c35ad0c60e73a0c43d9">getxattr</a> )(<a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h.html#a33e2aa4a8905a05397292ae047cd2257">fuse_req_t</a> req, <a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h.html#ad119a72f00b4cd2e4a500fd3364ae1e2">fuse_ino_t</a> ino, const char *name, size_t size)</td></tr>
<tr class="separator:aaed65c2801391c35ad0c60e73a0c43d9"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a0f084e779f3fbd407bb5d0890bf0ef6b"><td class="memItemLeft" align="right" valign="top">void(* </td><td class="memItemRight" valign="bottom"><a class="el" href="structfuse__lowlevel__ops.html#a0f084e779f3fbd407bb5d0890bf0ef6b">listxattr</a> )(<a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h.html#a33e2aa4a8905a05397292ae047cd2257">fuse_req_t</a> req, <a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h.html#ad119a72f00b4cd2e4a500fd3364ae1e2">fuse_ino_t</a> ino, size_t size)</td></tr>
<tr class="separator:a0f084e779f3fbd407bb5d0890bf0ef6b"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a15be6632986e6be8660071e1d71ffe51"><td class="memItemLeft" align="right" valign="top">void(* </td><td class="memItemRight" valign="bottom"><a class="el" href="structfuse__lowlevel__ops.html#a15be6632986e6be8660071e1d71ffe51">removexattr</a> )(<a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h.html#a33e2aa4a8905a05397292ae047cd2257">fuse_req_t</a> req, <a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h.html#ad119a72f00b4cd2e4a500fd3364ae1e2">fuse_ino_t</a> ino, const char *name)</td></tr>
<tr class="separator:a15be6632986e6be8660071e1d71ffe51"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:abdfcb8249b126f95bc33ba23e78f1916"><td class="memItemLeft" align="right" valign="top">void(* </td><td class="memItemRight" valign="bottom"><a class="el" href="structfuse__lowlevel__ops.html#abdfcb8249b126f95bc33ba23e78f1916">access</a> )(<a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h.html#a33e2aa4a8905a05397292ae047cd2257">fuse_req_t</a> req, <a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h.html#ad119a72f00b4cd2e4a500fd3364ae1e2">fuse_ino_t</a> ino, int mask)</td></tr>
<tr class="separator:abdfcb8249b126f95bc33ba23e78f1916"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a226ce8b472150dd91977cb6c191ff792"><td class="memItemLeft" align="right" valign="top">void(* </td><td class="memItemRight" valign="bottom"><a class="el" href="structfuse__lowlevel__ops.html#a226ce8b472150dd91977cb6c191ff792">create</a> )(<a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h.html#a33e2aa4a8905a05397292ae047cd2257">fuse_req_t</a> req, <a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h.html#ad119a72f00b4cd2e4a500fd3364ae1e2">fuse_ino_t</a> parent, const char *name, mode_t mode, struct <a class="el" href="structfuse__file__info.html">fuse_file_info</a> *fi)</td></tr>
<tr class="separator:a226ce8b472150dd91977cb6c191ff792"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a709d41ca0cde37dbd4d4d06c89f6906a"><td class="memItemLeft" align="right" valign="top">void(* </td><td class="memItemRight" valign="bottom"><a class="el" href="structfuse__lowlevel__ops.html#a709d41ca0cde37dbd4d4d06c89f6906a">getlk</a> )(<a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h.html#a33e2aa4a8905a05397292ae047cd2257">fuse_req_t</a> req, <a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h.html#ad119a72f00b4cd2e4a500fd3364ae1e2">fuse_ino_t</a> ino, struct <a class="el" href="structfuse__file__info.html">fuse_file_info</a> *fi, struct <a class="el" href="structfuse__lowlevel__ops.html#a01b103e34d751d0456add93d9c34e711">flock</a> *lock)</td></tr>
<tr class="separator:a709d41ca0cde37dbd4d4d06c89f6906a"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:af290d78441583d1d6ba02da01904f328"><td class="memItemLeft" align="right" valign="top">void(* </td><td class="memItemRight" valign="bottom"><a class="el" href="structfuse__lowlevel__ops.html#af290d78441583d1d6ba02da01904f328">setlk</a> )(<a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h.html#a33e2aa4a8905a05397292ae047cd2257">fuse_req_t</a> req, <a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h.html#ad119a72f00b4cd2e4a500fd3364ae1e2">fuse_ino_t</a> ino, struct <a class="el" href="structfuse__file__info.html">fuse_file_info</a> *fi, struct <a class="el" href="structfuse__lowlevel__ops.html#a01b103e34d751d0456add93d9c34e711">flock</a> *lock, int sleep)</td></tr>
<tr class="separator:af290d78441583d1d6ba02da01904f328"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:adb295e706897d7ada3249d8b027fde7b"><td class="memItemLeft" align="right" valign="top">void(* </td><td class="memItemRight" valign="bottom"><a class="el" href="structfuse__lowlevel__ops.html#adb295e706897d7ada3249d8b027fde7b">bmap</a> )(<a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h.html#a33e2aa4a8905a05397292ae047cd2257">fuse_req_t</a> req, <a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h.html#ad119a72f00b4cd2e4a500fd3364ae1e2">fuse_ino_t</a> ino, size_t blocksize, uint64_t idx)</td></tr>
<tr class="separator:adb295e706897d7ada3249d8b027fde7b"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a9ac954bd3cfab3c8d6000089a6fbb799"><td class="memItemLeft" align="right" valign="top">void(* </td><td class="memItemRight" valign="bottom"><a class="el" href="structfuse__lowlevel__ops.html#a9ac954bd3cfab3c8d6000089a6fbb799">ioctl</a> )(<a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h.html#a33e2aa4a8905a05397292ae047cd2257">fuse_req_t</a> req, <a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h.html#ad119a72f00b4cd2e4a500fd3364ae1e2">fuse_ino_t</a> ino, unsigned int cmd, void *arg, struct <a class="el" href="structfuse__file__info.html">fuse_file_info</a> *fi, unsigned flags, const void *in_buf, size_t in_bufsz, size_t out_bufsz)</td></tr>
<tr class="separator:a9ac954bd3cfab3c8d6000089a6fbb799"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a50abf8a54b6c73a5a40123b6cf63c71e"><td class="memItemLeft" align="right" valign="top">void(* </td><td class="memItemRight" valign="bottom"><a class="el" href="structfuse__lowlevel__ops.html#a50abf8a54b6c73a5a40123b6cf63c71e">poll</a> )(<a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h.html#a33e2aa4a8905a05397292ae047cd2257">fuse_req_t</a> req, <a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h.html#ad119a72f00b4cd2e4a500fd3364ae1e2">fuse_ino_t</a> ino, struct <a class="el" href="structfuse__file__info.html">fuse_file_info</a> *fi, struct fuse_pollhandle *ph)</td></tr>
<tr class="separator:a50abf8a54b6c73a5a40123b6cf63c71e"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a3b40ed06d1297f244363a8dcd40d44aa"><td class="memItemLeft" align="right" valign="top">void(* </td><td class="memItemRight" valign="bottom"><a class="el" href="structfuse__lowlevel__ops.html#a3b40ed06d1297f244363a8dcd40d44aa">write_buf</a> )(<a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h.html#a33e2aa4a8905a05397292ae047cd2257">fuse_req_t</a> req, <a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h.html#ad119a72f00b4cd2e4a500fd3364ae1e2">fuse_ino_t</a> ino, struct <a class="el" href="structfuse__bufvec.html">fuse_bufvec</a> *bufv, off_t off, struct <a class="el" href="structfuse__file__info.html">fuse_file_info</a> *fi)</td></tr>
<tr class="separator:a3b40ed06d1297f244363a8dcd40d44aa"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a1c1d7ad0c1fb40d7180660e7f3f7f089"><td class="memItemLeft" align="right" valign="top">void(* </td><td class="memItemRight" valign="bottom"><a class="el" href="structfuse__lowlevel__ops.html#a1c1d7ad0c1fb40d7180660e7f3f7f089">retrieve_reply</a> )(<a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h.html#a33e2aa4a8905a05397292ae047cd2257">fuse_req_t</a> req, void *cookie, <a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h.html#ad119a72f00b4cd2e4a500fd3364ae1e2">fuse_ino_t</a> ino, off_t offset, struct <a class="el" href="structfuse__bufvec.html">fuse_bufvec</a> *bufv)</td></tr>
<tr class="separator:a1c1d7ad0c1fb40d7180660e7f3f7f089"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a17808183820bb58dcc17db639511a2cb"><td class="memItemLeft" align="right" valign="top">void(* </td><td class="memItemRight" valign="bottom"><a class="el" href="structfuse__lowlevel__ops.html#a17808183820bb58dcc17db639511a2cb">forget_multi</a> )(<a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h.html#a33e2aa4a8905a05397292ae047cd2257">fuse_req_t</a> req, size_t count, struct fuse_forget_data *forgets)</td></tr>
<tr class="separator:a17808183820bb58dcc17db639511a2cb"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a01b103e34d751d0456add93d9c34e711"><td class="memItemLeft" align="right" valign="top">void(* </td><td class="memItemRight" valign="bottom"><a class="el" href="structfuse__lowlevel__ops.html#a01b103e34d751d0456add93d9c34e711">flock</a> )(<a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h.html#a33e2aa4a8905a05397292ae047cd2257">fuse_req_t</a> req, <a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h.html#ad119a72f00b4cd2e4a500fd3364ae1e2">fuse_ino_t</a> ino, struct <a class="el" href="structfuse__file__info.html">fuse_file_info</a> *fi, int op)</td></tr>
<tr class="separator:a01b103e34d751d0456add93d9c34e711"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a5d0ddef3583d645ccf957bdef9291047"><td class="memItemLeft" align="right" valign="top">void(* </td><td class="memItemRight" valign="bottom"><a class="el" href="structfuse__lowlevel__ops.html#a5d0ddef3583d645ccf957bdef9291047">fallocate</a> )(<a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h.html#a33e2aa4a8905a05397292ae047cd2257">fuse_req_t</a> req, <a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h.html#ad119a72f00b4cd2e4a500fd3364ae1e2">fuse_ino_t</a> ino, int mode, off_t offset, off_t length, struct <a class="el" href="structfuse__file__info.html">fuse_file_info</a> *fi)</td></tr>
<tr class="separator:a5d0ddef3583d645ccf957bdef9291047"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:af621ef96ffc2a71af8c7768c109b880e"><td class="memItemLeft" align="right" valign="top">void(* </td><td class="memItemRight" valign="bottom"><a class="el" href="structfuse__lowlevel__ops.html#af621ef96ffc2a71af8c7768c109b880e">readdirplus</a> )(<a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h.html#a33e2aa4a8905a05397292ae047cd2257">fuse_req_t</a> req, <a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h.html#ad119a72f00b4cd2e4a500fd3364ae1e2">fuse_ino_t</a> ino, size_t size, off_t off, struct <a class="el" href="structfuse__file__info.html">fuse_file_info</a> *fi)</td></tr>
<tr class="separator:af621ef96ffc2a71af8c7768c109b880e"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a4a2e044849baf612bf54ea983f2c61a8"><td class="memItemLeft" align="right" valign="top">void(* </td><td class="memItemRight" valign="bottom"><a class="el" href="structfuse__lowlevel__ops.html#a4a2e044849baf612bf54ea983f2c61a8">copy_file_range</a> )(<a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h.html#a33e2aa4a8905a05397292ae047cd2257">fuse_req_t</a> req, <a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h.html#ad119a72f00b4cd2e4a500fd3364ae1e2">fuse_ino_t</a> ino_in, off_t off_in, struct <a class="el" href="structfuse__file__info.html">fuse_file_info</a> *fi_in, <a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h.html#ad119a72f00b4cd2e4a500fd3364ae1e2">fuse_ino_t</a> ino_out, off_t off_out, struct <a class="el" href="structfuse__file__info.html">fuse_file_info</a> *fi_out, size_t len, int flags)</td></tr>
<tr class="separator:a4a2e044849baf612bf54ea983f2c61a8"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a0da4080ebdb822f300e5d227924daf9b"><td class="memItemLeft" align="right" valign="top">void(* </td><td class="memItemRight" valign="bottom"><a class="el" href="structfuse__lowlevel__ops.html#a0da4080ebdb822f300e5d227924daf9b">lseek</a> )(<a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h.html#a33e2aa4a8905a05397292ae047cd2257">fuse_req_t</a> req, <a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h.html#ad119a72f00b4cd2e4a500fd3364ae1e2">fuse_ino_t</a> ino, off_t off, int whence, struct <a class="el" href="structfuse__file__info.html">fuse_file_info</a> *fi)</td></tr>
<tr class="separator:a0da4080ebdb822f300e5d227924daf9b"><td class="memSeparator" colspan="2"> </td></tr>
</table>
<a name="details" id="details"></a><h2 class="groupheader">Detailed Description</h2>
<div class="textblock"><p>Low level filesystem operations</p>
<p>Most of the methods (with the exception of init and destroy) receive a request handle (fuse_req_t) as their first argument. This handle must be passed to one of the specified reply functions.</p>
<p>This may be done inside the method invocation, or after the call has returned. The request handle is valid until one of the reply functions is called.</p>
<p>Other pointer arguments (name, <a class="el" href="structfuse__file__info.html">fuse_file_info</a>, etc) are not valid after the call has returned, so if they are needed later, their contents have to be copied.</p>
<p>In general, all methods are expected to perform any necessary permission checking. However, a filesystem may delegate this task to the kernel by passing the <code>default_permissions</code> mount option to <code><a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h.html#a9ee52f81d0c63d9bd46b11314ba596cf">fuse_session_new()</a></code>. In this case, methods will only be called if the kernel's permission check has succeeded.</p>
<p>The filesystem sometimes needs to handle a return value of -ENOENT from the reply function, which means, that the request was interrupted, and the reply discarded. For example if <a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h.html#a170f8c6b953d70928e83bcecee43bfdc">fuse_reply_open()</a> return -ENOENT means, that the release method for this file will not be called. </p>
<p class="definition">Definition at line <a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h_source.html#l00192">192</a> of file <a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h_source.html">fuse_lowlevel.h</a>.</p>
</div><h2 class="groupheader">Field Documentation</h2>
<a id="abdfcb8249b126f95bc33ba23e78f1916"></a>
<h2 class="memtitle"><span class="permalink"><a href="#abdfcb8249b126f95bc33ba23e78f1916">◆ </a></span>access</h2>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void(* fuse_lowlevel_ops::access)(<a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h.html#a33e2aa4a8905a05397292ae047cd2257">fuse_req_t</a> req, <a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h.html#ad119a72f00b4cd2e4a500fd3364ae1e2">fuse_ino_t</a> ino, int mask)</td>
</tr>
</table>
</div><div class="memdoc">
<p>Check file access permissions</p>
<p>This will be called for the <a class="el" href="structfuse__lowlevel__ops.html#abdfcb8249b126f95bc33ba23e78f1916">access()</a> and chdir() system calls. If the 'default_permissions' mount option is given, this method is not called.</p>
<p>This method is not called under Linux kernel versions 2.4.x</p>
<p>If this request is answered with an error code of ENOSYS, this is treated as a permanent success, i.e. this and all future <a class="el" href="structfuse__lowlevel__ops.html#abdfcb8249b126f95bc33ba23e78f1916">access()</a> requests will succeed without being send to the filesystem process.</p>
<p>Valid replies: fuse_reply_err</p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">req</td><td>request handle </td></tr>
<tr><td class="paramname">ino</td><td>the inode number </td></tr>
<tr><td class="paramname">mask</td><td>requested access mode </td></tr>
</table>
</dd>
</dl>
<p class="definition">Definition at line <a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h_source.html#l00917">917</a> of file <a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h_source.html">fuse_lowlevel.h</a>.</p>
</div>
</div>
<a id="adb295e706897d7ada3249d8b027fde7b"></a>
<h2 class="memtitle"><span class="permalink"><a href="#adb295e706897d7ada3249d8b027fde7b">◆ </a></span>bmap</h2>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void(* fuse_lowlevel_ops::bmap)(<a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h.html#a33e2aa4a8905a05397292ae047cd2257">fuse_req_t</a> req, <a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h.html#ad119a72f00b4cd2e4a500fd3364ae1e2">fuse_ino_t</a> ino, size_t blocksize, uint64_t idx)</td>
</tr>
</table>
</div><div class="memdoc">
<p>Map block index within file to block index within device</p>
<p>Note: This makes sense only for block device backed filesystems mounted with the 'blkdev' option</p>
<p>If this request is answered with an error code of ENOSYS, this is treated as a permanent failure, i.e. all future <a class="el" href="structfuse__lowlevel__ops.html#adb295e706897d7ada3249d8b027fde7b">bmap()</a> requests will fail with the same error code without being send to the filesystem process.</p>
<p>Valid replies: fuse_reply_bmap fuse_reply_err</p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">req</td><td>request handle </td></tr>
<tr><td class="paramname">ino</td><td>the inode number </td></tr>
<tr><td class="paramname">blocksize</td><td>unit of block index </td></tr>
<tr><td class="paramname">idx</td><td>block index within file </td></tr>
</table>
</dd>
</dl>
<p class="definition">Definition at line <a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h_source.html#l01010">1010</a> of file <a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h_source.html">fuse_lowlevel.h</a>.</p>
</div>
</div>
<a id="a4a2e044849baf612bf54ea983f2c61a8"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a4a2e044849baf612bf54ea983f2c61a8">◆ </a></span>copy_file_range</h2>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void(* fuse_lowlevel_ops::copy_file_range)(<a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h.html#a33e2aa4a8905a05397292ae047cd2257">fuse_req_t</a> req, <a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h.html#ad119a72f00b4cd2e4a500fd3364ae1e2">fuse_ino_t</a> ino_in, off_t off_in, struct <a class="el" href="structfuse__file__info.html">fuse_file_info</a> *fi_in, <a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h.html#ad119a72f00b4cd2e4a500fd3364ae1e2">fuse_ino_t</a> ino_out, off_t off_out, struct <a class="el" href="structfuse__file__info.html">fuse_file_info</a> *fi_out, size_t len, int flags)</td>
</tr>
</table>
</div><div class="memdoc">
<p>Copy a range of data from one file to another</p>
<p>Performs an optimized copy between two file descriptors without the additional cost of transferring data through the FUSE kernel module to user space (glibc) and then back into the FUSE filesystem again.</p>
<p>In case this method is not implemented, glibc falls back to reading data from the source and writing to the destination. Effectively doing an inefficient copy of the data.</p>
<p>If this request is answered with an error code of ENOSYS, this is treated as a permanent failure with error code EOPNOTSUPP, i.e. all future <a class="el" href="structfuse__lowlevel__ops.html#a4a2e044849baf612bf54ea983f2c61a8">copy_file_range()</a> requests will fail with EOPNOTSUPP without being send to the filesystem process.</p>
<p>Valid replies: fuse_reply_write fuse_reply_err</p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">req</td><td>request handle </td></tr>
<tr><td class="paramname">ino_in</td><td>the inode number or the source file </td></tr>
<tr><td class="paramname">off_in</td><td>starting point from were the data should be read </td></tr>
<tr><td class="paramname">fi_in</td><td>file information of the source file </td></tr>
<tr><td class="paramname">ino_out</td><td>the inode number or the destination file </td></tr>
<tr><td class="paramname">off_out</td><td>starting point where the data should be written </td></tr>
<tr><td class="paramname">fi_out</td><td>file information of the destination file </td></tr>
<tr><td class="paramname">len</td><td>maximum size of the data to copy </td></tr>
<tr><td class="paramname">flags</td><td>passed along with the <a class="el" href="structfuse__lowlevel__ops.html#a4a2e044849baf612bf54ea983f2c61a8">copy_file_range()</a> syscall </td></tr>
</table>
</dd>
</dl>
<p class="definition">Definition at line <a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h_source.html#l01242">1242</a> of file <a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h_source.html">fuse_lowlevel.h</a>.</p>
</div>
</div>
<a id="a226ce8b472150dd91977cb6c191ff792"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a226ce8b472150dd91977cb6c191ff792">◆ </a></span>create</h2>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void(* fuse_lowlevel_ops::create)(<a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h.html#a33e2aa4a8905a05397292ae047cd2257">fuse_req_t</a> req, <a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h.html#ad119a72f00b4cd2e4a500fd3364ae1e2">fuse_ino_t</a> parent, const char *name, mode_t mode, struct <a class="el" href="structfuse__file__info.html">fuse_file_info</a> *fi)</td>
</tr>
</table>
</div><div class="memdoc">
<p>Create and open a file</p>
<p>If the file does not exist, first create it with the specified mode, and then open it.</p>
<p>See the description of the open handler for more information.</p>
<p>If this method is not implemented or under Linux kernel versions earlier than 2.6.15, the <a class="el" href="structfuse__lowlevel__ops.html#a5cd44aa96291fa366d4ef40e2d1d1d76">mknod()</a> and <a class="el" href="structfuse__lowlevel__ops.html#aab2f5186ecaa817e75ed443165288218">open()</a> methods will be called instead.</p>
<p>If this request is answered with an error code of ENOSYS, the handler is treated as not implemented (i.e., for this and future requests the <a class="el" href="structfuse__lowlevel__ops.html#a5cd44aa96291fa366d4ef40e2d1d1d76">mknod()</a> and <a class="el" href="structfuse__lowlevel__ops.html#aab2f5186ecaa817e75ed443165288218">open()</a> handlers will be called instead).</p>
<p>Valid replies: fuse_reply_create fuse_reply_err</p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">req</td><td>request handle </td></tr>
<tr><td class="paramname">parent</td><td>inode number of the parent directory </td></tr>
<tr><td class="paramname">name</td><td>to create </td></tr>
<tr><td class="paramname">mode</td><td>file type and mode with which to create the new file </td></tr>
<tr><td class="paramname">fi</td><td>file information </td></tr>
</table>
</dd>
</dl>
<p class="definition">Definition at line <a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h_source.html#l00946">946</a> of file <a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h_source.html">fuse_lowlevel.h</a>.</p>
</div>
</div>
<a id="a963181c33f58859fd060b0ccde2f5ec3"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a963181c33f58859fd060b0ccde2f5ec3">◆ </a></span>destroy</h2>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void(* fuse_lowlevel_ops::destroy)(void *userdata)</td>
</tr>
</table>
</div><div class="memdoc">
<p>Clean up filesystem.</p>
<p>Called on filesystem exit. When this method is called, the connection to the kernel may be gone already, so that eg. calls to fuse_lowlevel_notify_* will fail.</p>
<p>There's no reply to this function</p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">userdata</td><td>the user data passed to <a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h.html#a9ee52f81d0c63d9bd46b11314ba596cf">fuse_session_new()</a> </td></tr>
</table>
</dd>
</dl>
<p class="definition">Definition at line <a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h_source.html#l00222">222</a> of file <a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h_source.html">fuse_lowlevel.h</a>.</p>
</div>
</div>
<a id="a5d0ddef3583d645ccf957bdef9291047"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a5d0ddef3583d645ccf957bdef9291047">◆ </a></span>fallocate</h2>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void(* fuse_lowlevel_ops::fallocate)(<a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h.html#a33e2aa4a8905a05397292ae047cd2257">fuse_req_t</a> req, <a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h.html#ad119a72f00b4cd2e4a500fd3364ae1e2">fuse_ino_t</a> ino, int mode, off_t offset, off_t length, struct <a class="el" href="structfuse__file__info.html">fuse_file_info</a> *fi)</td>
</tr>
</table>
</div><div class="memdoc">
<p>Allocate requested space. If this function returns success then subsequent writes to the specified range shall not fail due to the lack of free space on the file system storage media.</p>
<p>If this request is answered with an error code of ENOSYS, this is treated as a permanent failure with error code EOPNOTSUPP, i.e. all future <a class="el" href="structfuse__lowlevel__ops.html#a5d0ddef3583d645ccf957bdef9291047">fallocate()</a> requests will fail with EOPNOTSUPP without being send to the filesystem process.</p>
<p>Valid replies: fuse_reply_err</p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">req</td><td>request handle </td></tr>
<tr><td class="paramname">ino</td><td>the inode number </td></tr>
<tr><td class="paramname">offset</td><td>starting point for allocated region </td></tr>
<tr><td class="paramname">length</td><td>size of allocated region </td></tr>
<tr><td class="paramname">mode</td><td>determines the operation to be performed on the given range, see fallocate(2) </td></tr>
</table>
</dd>
</dl>
<p class="definition">Definition at line <a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h_source.html#l01181">1181</a> of file <a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h_source.html">fuse_lowlevel.h</a>.</p>
</div>
</div>
<a id="a01b103e34d751d0456add93d9c34e711"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a01b103e34d751d0456add93d9c34e711">◆ </a></span>flock</h2>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void(* fuse_lowlevel_ops::flock)(<a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h.html#a33e2aa4a8905a05397292ae047cd2257">fuse_req_t</a> req, <a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h.html#ad119a72f00b4cd2e4a500fd3364ae1e2">fuse_ino_t</a> ino, struct <a class="el" href="structfuse__file__info.html">fuse_file_info</a> *fi, int op)</td>
</tr>
</table>
</div><div class="memdoc">
<p>Acquire, modify or release a BSD file lock</p>
<p>Note: if the locking methods are not implemented, the kernel will still allow file locking to work locally. Hence these are only interesting for network filesystems and similar.</p>
<p>Valid replies: fuse_reply_err</p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">req</td><td>request handle </td></tr>
<tr><td class="paramname">ino</td><td>the inode number </td></tr>
<tr><td class="paramname">fi</td><td>file information </td></tr>
<tr><td class="paramname">op</td><td>the locking operation, see flock(2) </td></tr>
</table>
</dd>
</dl>
<p class="definition">Definition at line <a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h_source.html#l01158">1158</a> of file <a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h_source.html">fuse_lowlevel.h</a>.</p>
</div>
</div>
<a id="af6c2540969d60626f1c18e0012de393a"></a>
<h2 class="memtitle"><span class="permalink"><a href="#af6c2540969d60626f1c18e0012de393a">◆ </a></span>flush</h2>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void(* fuse_lowlevel_ops::flush)(<a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h.html#a33e2aa4a8905a05397292ae047cd2257">fuse_req_t</a> req, <a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h.html#ad119a72f00b4cd2e4a500fd3364ae1e2">fuse_ino_t</a> ino, struct <a class="el" href="structfuse__file__info.html">fuse_file_info</a> *fi)</td>
</tr>
</table>
</div><div class="memdoc">
<p>Flush method</p>
<p>This is called on each close() of the opened file.</p>
<p>Since file descriptors can be duplicated (dup, dup2, fork), for one open call there may be many flush calls.</p>
<p>Filesystems shouldn't assume that flush will always be called after some writes, or that if will be called at all.</p>
<p>fi->fh will contain the value set by the open method, or will be undefined if the open method didn't set any value.</p>
<p>NOTE: the name of the method is misleading, since (unlike fsync) the filesystem is not forced to flush pending writes. One reason to flush data is if the filesystem wants to return write errors during close. However, such use is non-portable because POSIX does not require <a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/close.html">close</a> to wait for delayed I/O to complete.</p>
<p>If the filesystem supports file locking operations (setlk, getlk) it should remove all locks belonging to 'fi->owner'.</p>
<p>If this request is answered with an error code of ENOSYS, this is treated as success and future calls to <a class="el" href="structfuse__lowlevel__ops.html#af6c2540969d60626f1c18e0012de393a">flush()</a> will succeed automatically without being send to the filesystem process.</p>
<p>Valid replies: fuse_reply_err</p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">req</td><td>request handle </td></tr>
<tr><td class="paramname">ino</td><td>the inode number </td></tr>
<tr><td class="paramname">fi</td><td>file information </td></tr>
</table>
</dd>
</dl>
<p class="definition">Definition at line <a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h_source.html#l00625">625</a> of file <a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h_source.html">fuse_lowlevel.h</a>.</p>
</div>
</div>
<a id="a97de3962fc55f136c6bd48183705dbe8"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a97de3962fc55f136c6bd48183705dbe8">◆ </a></span>forget</h2>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void(* fuse_lowlevel_ops::forget)(<a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h.html#a33e2aa4a8905a05397292ae047cd2257">fuse_req_t</a> req, <a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h.html#ad119a72f00b4cd2e4a500fd3364ae1e2">fuse_ino_t</a> ino, uint64_t nlookup)</td>
</tr>
</table>
</div><div class="memdoc">
<p>Forget about an inode</p>
<p>This function is called when the kernel removes an inode from its internal caches.</p>
<p>The inode's lookup count increases by one for every call to fuse_reply_entry and fuse_reply_create. The nlookup parameter indicates by how much the lookup count should be decreased.</p>
<p>Inodes with a non-zero lookup count may receive request from the kernel even after calls to unlink, rmdir or (when overwriting an existing file) rename. Filesystems must handle such requests properly and it is recommended to defer removal of the inode until the lookup count reaches zero. Calls to unlink, rmdir or rename will be followed closely by forget unless the file or directory is open, in which case the kernel issues forget only after the release or releasedir calls.</p>
<p>Note that if a file system will be exported over NFS the inodes lifetime must extend even beyond forget. See the generation field in struct <a class="el" href="structfuse__entry__param.html">fuse_entry_param</a> above.</p>
<p>On unmount the lookup count for all inodes implicitly drops to zero. It is not guaranteed that the file system will receive corresponding forget messages for the affected inodes.</p>
<p>Valid replies: fuse_reply_none</p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">req</td><td>request handle </td></tr>
<tr><td class="paramname">ino</td><td>the inode number </td></tr>
<tr><td class="paramname">nlookup</td><td>the number of lookups to forget </td></tr>
</table>
</dd>
</dl>
<p class="definition">Definition at line <a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h_source.html#l00273">273</a> of file <a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h_source.html">fuse_lowlevel.h</a>.</p>
</div>
</div>
<a id="a17808183820bb58dcc17db639511a2cb"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a17808183820bb58dcc17db639511a2cb">◆ </a></span>forget_multi</h2>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void(* fuse_lowlevel_ops::forget_multi)(<a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h.html#a33e2aa4a8905a05397292ae047cd2257">fuse_req_t</a> req, size_t count, struct fuse_forget_data *forgets)</td>
</tr>
</table>
</div><div class="memdoc">
<p>Forget about multiple inodes</p>
<p>See description of the forget function for more information.</p>
<p>Valid replies: fuse_reply_none</p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">req</td><td>request handle </td></tr>
</table>
</dd>
</dl>
<p class="definition">Definition at line <a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h_source.html#l01140">1140</a> of file <a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h_source.html">fuse_lowlevel.h</a>.</p>
</div>
</div>
<a id="a81ff5a93a2edd71b063c2e827e0fd8d8"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a81ff5a93a2edd71b063c2e827e0fd8d8">◆ </a></span>fsync</h2>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void(* fuse_lowlevel_ops::fsync)(<a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h.html#a33e2aa4a8905a05397292ae047cd2257">fuse_req_t</a> req, <a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h.html#ad119a72f00b4cd2e4a500fd3364ae1e2">fuse_ino_t</a> ino, int datasync, struct <a class="el" href="structfuse__file__info.html">fuse_file_info</a> *fi)</td>
</tr>
</table>
</div><div class="memdoc">
<p>Synchronize file contents</p>
<p>If the datasync parameter is non-zero, then only the user data should be flushed, not the meta data.</p>
<p>If this request is answered with an error code of ENOSYS, this is treated as success and future calls to <a class="el" href="structfuse__lowlevel__ops.html#a81ff5a93a2edd71b063c2e827e0fd8d8">fsync()</a> will succeed automatically without being send to the filesystem process.</p>
<p>Valid replies: fuse_reply_err</p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">req</td><td>request handle </td></tr>
<tr><td class="paramname">ino</td><td>the inode number </td></tr>
<tr><td class="paramname">datasync</td><td>flag indicating if only data should be flushed </td></tr>
<tr><td class="paramname">fi</td><td>file information </td></tr>
</table>
</dd>
</dl>
<p class="definition">Definition at line <a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h_source.html#l00675">675</a> of file <a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h_source.html">fuse_lowlevel.h</a>.</p>
</div>
</div>
<a id="ab2e3a9ad8b264daec4c254f5b064dfb3"></a>
<h2 class="memtitle"><span class="permalink"><a href="#ab2e3a9ad8b264daec4c254f5b064dfb3">◆ </a></span>fsyncdir</h2>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void(* fuse_lowlevel_ops::fsyncdir)(<a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h.html#a33e2aa4a8905a05397292ae047cd2257">fuse_req_t</a> req, <a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h.html#ad119a72f00b4cd2e4a500fd3364ae1e2">fuse_ino_t</a> ino, int datasync, struct <a class="el" href="structfuse__file__info.html">fuse_file_info</a> *fi)</td>
</tr>
</table>
</div><div class="memdoc">
<p>Synchronize directory contents</p>
<p>If the datasync parameter is non-zero, then only the directory contents should be flushed, not the meta data.</p>
<p>fi->fh will contain the value set by the opendir method, or will be undefined if the opendir method didn't set any value.</p>
<p>If this request is answered with an error code of ENOSYS, this is treated as success and future calls to <a class="el" href="structfuse__lowlevel__ops.html#ab2e3a9ad8b264daec4c254f5b064dfb3">fsyncdir()</a> will succeed automatically without being send to the filesystem process.</p>
<p>Valid replies: fuse_reply_err</p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">req</td><td>request handle </td></tr>
<tr><td class="paramname">ino</td><td>the inode number </td></tr>
<tr><td class="paramname">datasync</td><td>flag indicating if only data should be flushed </td></tr>
<tr><td class="paramname">fi</td><td>file information </td></tr>
</table>
</dd>
</dl>
<p class="definition">Definition at line <a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h_source.html#l00790">790</a> of file <a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h_source.html">fuse_lowlevel.h</a>.</p>
</div>
</div>
<a id="a994c316fa7a1ca33525a4540675f6b47"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a994c316fa7a1ca33525a4540675f6b47">◆ </a></span>getattr</h2>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void(* fuse_lowlevel_ops::getattr)(<a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h.html#a33e2aa4a8905a05397292ae047cd2257">fuse_req_t</a> req, <a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h.html#ad119a72f00b4cd2e4a500fd3364ae1e2">fuse_ino_t</a> ino, struct <a class="el" href="structfuse__file__info.html">fuse_file_info</a> *fi)</td>
</tr>
</table>
</div><div class="memdoc">
<p>Get file attributes.</p>
<p>If writeback caching is enabled, the kernel may have a better idea of a file's length than the FUSE file system (eg if there has been a write that extended the file size, but that has not yet been passed to the filesystem.n</p>
<p>In this case, the st_size value provided by the file system will be ignored.</p>
<p>Valid replies: fuse_reply_attr fuse_reply_err</p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">req</td><td>request handle </td></tr>
<tr><td class="paramname">ino</td><td>the inode number </td></tr>
<tr><td class="paramname">fi</td><td>for future use, currently always NULL </td></tr>
</table>
</dd>
</dl>
<p class="definition">Definition at line <a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h_source.html#l00294">294</a> of file <a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h_source.html">fuse_lowlevel.h</a>.</p>
</div>
</div>
<a id="a709d41ca0cde37dbd4d4d06c89f6906a"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a709d41ca0cde37dbd4d4d06c89f6906a">◆ </a></span>getlk</h2>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void(* fuse_lowlevel_ops::getlk)(<a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h.html#a33e2aa4a8905a05397292ae047cd2257">fuse_req_t</a> req, <a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h.html#ad119a72f00b4cd2e4a500fd3364ae1e2">fuse_ino_t</a> ino, struct <a class="el" href="structfuse__file__info.html">fuse_file_info</a> *fi, struct <a class="el" href="structfuse__lowlevel__ops.html#a01b103e34d751d0456add93d9c34e711">flock</a> *lock)</td>
</tr>
</table>
</div><div class="memdoc">
<p>Test for a POSIX file lock</p>
<p>Valid replies: fuse_reply_lock fuse_reply_err</p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">req</td><td>request handle </td></tr>
<tr><td class="paramname">ino</td><td>the inode number </td></tr>
<tr><td class="paramname">fi</td><td>file information </td></tr>
<tr><td class="paramname">lock</td><td>the region/type to test </td></tr>
</table>
</dd>
</dl>
<p class="definition">Definition at line <a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h_source.html#l00961">961</a> of file <a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h_source.html">fuse_lowlevel.h</a>.</p>
</div>
</div>
<a id="aaed65c2801391c35ad0c60e73a0c43d9"></a>
<h2 class="memtitle"><span class="permalink"><a href="#aaed65c2801391c35ad0c60e73a0c43d9">◆ </a></span>getxattr</h2>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void(* fuse_lowlevel_ops::getxattr)(<a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h.html#a33e2aa4a8905a05397292ae047cd2257">fuse_req_t</a> req, <a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h.html#ad119a72f00b4cd2e4a500fd3364ae1e2">fuse_ino_t</a> ino, const char *name, size_t size)</td>
</tr>
</table>
</div><div class="memdoc">
<p>Get an extended attribute</p>
<p>If size is zero, the size of the value should be sent with fuse_reply_xattr.</p>
<p>If the size is non-zero, and the value fits in the buffer, the value should be sent with fuse_reply_buf.</p>
<p>If the size is too small for the value, the ERANGE error should be sent.</p>
<p>If this request is answered with an error code of ENOSYS, this is treated as a permanent failure with error code EOPNOTSUPP, i.e. all future <a class="el" href="structfuse__lowlevel__ops.html#aaed65c2801391c35ad0c60e73a0c43d9">getxattr()</a> requests will fail with EOPNOTSUPP without being send to the filesystem process.</p>
<p>Valid replies: fuse_reply_buf fuse_reply_data fuse_reply_xattr fuse_reply_err</p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">req</td><td>request handle </td></tr>
<tr><td class="paramname">ino</td><td>the inode number </td></tr>
<tr><td class="paramname">name</td><td>of the extended attribute </td></tr>
<tr><td class="paramname">size</td><td>maximum size of the value to send </td></tr>
</table>
</dd>
</dl>
<p class="definition">Definition at line <a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h_source.html#l00847">847</a> of file <a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h_source.html">fuse_lowlevel.h</a>.</p>
</div>
</div>
<a id="ab6fa0b9edb5b002cd1502c969c887329"></a>
<h2 class="memtitle"><span class="permalink"><a href="#ab6fa0b9edb5b002cd1502c969c887329">◆ </a></span>init</h2>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void(* fuse_lowlevel_ops::init)(void *userdata, struct <a class="el" href="structfuse__conn__info.html">fuse_conn_info</a> *conn)</td>
</tr>
</table>
</div><div class="memdoc">
<p>Initialize filesystem</p>
<p>This function is called when libfuse establishes communication with the FUSE kernel module. The file system should use this module to inspect and/or modify the connection parameters provided in the <code>conn</code> structure.</p>
<p>Note that some parameters may be overwritten by options passed to <a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h.html#a9ee52f81d0c63d9bd46b11314ba596cf">fuse_session_new()</a> which take precedence over the values set in this handler.</p>
<p>There's no reply to this function</p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">userdata</td><td>the user data passed to <a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h.html#a9ee52f81d0c63d9bd46b11314ba596cf">fuse_session_new()</a> </td></tr>
</table>
</dd>
</dl>
<p class="definition">Definition at line <a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h_source.html#l00209">209</a> of file <a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h_source.html">fuse_lowlevel.h</a>.</p>
</div>
</div>
<a id="a9ac954bd3cfab3c8d6000089a6fbb799"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a9ac954bd3cfab3c8d6000089a6fbb799">◆ </a></span>ioctl</h2>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void(* fuse_lowlevel_ops::ioctl)(<a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h.html#a33e2aa4a8905a05397292ae047cd2257">fuse_req_t</a> req, <a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h.html#ad119a72f00b4cd2e4a500fd3364ae1e2">fuse_ino_t</a> ino, unsigned int cmd, void *arg, struct <a class="el" href="structfuse__file__info.html">fuse_file_info</a> *fi, unsigned flags, const void *in_buf, size_t in_bufsz, size_t out_bufsz)</td>
</tr>
</table>
</div><div class="memdoc">
<p>Ioctl</p>
<p>Note: For unrestricted ioctls (not allowed for FUSE servers), data in and out areas can be discovered by giving iovs and setting FUSE_IOCTL_RETRY in <em>flags</em>. For restricted ioctls, kernel prepares in/out data area according to the information encoded in cmd.</p>
<p>Valid replies: fuse_reply_ioctl_retry fuse_reply_ioctl fuse_reply_ioctl_iov fuse_reply_err</p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">req</td><td>request handle </td></tr>
<tr><td class="paramname">ino</td><td>the inode number </td></tr>
<tr><td class="paramname">cmd</td><td>ioctl command </td></tr>
<tr><td class="paramname">arg</td><td>ioctl argument </td></tr>
<tr><td class="paramname">fi</td><td>file information </td></tr>
<tr><td class="paramname">flags</td><td>for FUSE_IOCTL_* flags </td></tr>
<tr><td class="paramname">in_buf</td><td>data fetched from the caller </td></tr>
<tr><td class="paramname">in_bufsz</td><td>number of fetched bytes </td></tr>
<tr><td class="paramname">out_bufsz</td><td>maximum size of output data</td></tr>
</table>
</dd>
</dl>
<p>Note : the unsigned long request submitted by the application is truncated to 32 bits. </p>
<p class="definition">Definition at line <a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h_source.html#l01046">1046</a> of file <a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h_source.html">fuse_lowlevel.h</a>.</p>
</div>
</div>
<a id="a406798b81f44a8b54f188455c31b9be8"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a406798b81f44a8b54f188455c31b9be8">◆ </a></span>link</h2>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void(* fuse_lowlevel_ops::link)(<a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h.html#a33e2aa4a8905a05397292ae047cd2257">fuse_req_t</a> req, <a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h.html#ad119a72f00b4cd2e4a500fd3364ae1e2">fuse_ino_t</a> ino, <a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h.html#ad119a72f00b4cd2e4a500fd3364ae1e2">fuse_ino_t</a> newparent, const char *newname)</td>
</tr>
</table>
</div><div class="memdoc">
<p>Create a hard link</p>
<p>Valid replies: fuse_reply_entry fuse_reply_err</p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">req</td><td>request handle </td></tr>
<tr><td class="paramname">ino</td><td>the old inode number </td></tr>
<tr><td class="paramname">newparent</td><td>inode number of the new parent directory </td></tr>
<tr><td class="paramname">newname</td><td>new name to create </td></tr>
</table>
</dd>
</dl>
<p class="definition">Definition at line <a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h_source.html#l00468">468</a> of file <a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h_source.html">fuse_lowlevel.h</a>.</p>
</div>
</div>
<a id="a0f084e779f3fbd407bb5d0890bf0ef6b"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a0f084e779f3fbd407bb5d0890bf0ef6b">◆ </a></span>listxattr</h2>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void(* fuse_lowlevel_ops::listxattr)(<a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h.html#a33e2aa4a8905a05397292ae047cd2257">fuse_req_t</a> req, <a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h.html#ad119a72f00b4cd2e4a500fd3364ae1e2">fuse_ino_t</a> ino, size_t size)</td>
</tr>
</table>
</div><div class="memdoc">
<p>List extended attribute names</p>
<p>If size is zero, the total size of the attribute list should be sent with fuse_reply_xattr.</p>
<p>If the size is non-zero, and the null character separated attribute list fits in the buffer, the list should be sent with fuse_reply_buf.</p>
<p>If the size is too small for the list, the ERANGE error should be sent.</p>
<p>If this request is answered with an error code of ENOSYS, this is treated as a permanent failure with error code EOPNOTSUPP, i.e. all future <a class="el" href="structfuse__lowlevel__ops.html#a0f084e779f3fbd407bb5d0890bf0ef6b">listxattr()</a> requests will fail with EOPNOTSUPP without being send to the filesystem process.</p>
<p>Valid replies: fuse_reply_buf fuse_reply_data fuse_reply_xattr fuse_reply_err</p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">req</td><td>request handle </td></tr>
<tr><td class="paramname">ino</td><td>the inode number </td></tr>
<tr><td class="paramname">size</td><td>maximum size of the list to send </td></tr>
</table>
</dd>
</dl>
<p class="definition">Definition at line <a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h_source.html#l00878">878</a> of file <a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h_source.html">fuse_lowlevel.h</a>.</p>
</div>
</div>
<a id="ae8a2850c71bec355ad347413fa73f7c2"></a>
<h2 class="memtitle"><span class="permalink"><a href="#ae8a2850c71bec355ad347413fa73f7c2">◆ </a></span>lookup</h2>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void(* fuse_lowlevel_ops::lookup)(<a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h.html#a33e2aa4a8905a05397292ae047cd2257">fuse_req_t</a> req, <a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h.html#ad119a72f00b4cd2e4a500fd3364ae1e2">fuse_ino_t</a> parent, const char *name)</td>
</tr>
</table>
</div><div class="memdoc">
<p>Look up a directory entry by name and get its attributes.</p>
<p>Valid replies: fuse_reply_entry fuse_reply_err</p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">req</td><td>request handle </td></tr>
<tr><td class="paramname">parent</td><td>inode number of the parent directory </td></tr>
<tr><td class="paramname">name</td><td>the name to look up </td></tr>
</table>
</dd>
</dl>
<p class="definition">Definition at line <a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h_source.html#l00235">235</a> of file <a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h_source.html">fuse_lowlevel.h</a>.</p>
</div>
</div>
<a id="a0da4080ebdb822f300e5d227924daf9b"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a0da4080ebdb822f300e5d227924daf9b">◆ </a></span>lseek</h2>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void(* fuse_lowlevel_ops::lseek)(<a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h.html#a33e2aa4a8905a05397292ae047cd2257">fuse_req_t</a> req, <a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h.html#ad119a72f00b4cd2e4a500fd3364ae1e2">fuse_ino_t</a> ino, off_t off, int whence, struct <a class="el" href="structfuse__file__info.html">fuse_file_info</a> *fi)</td>
</tr>
</table>
</div><div class="memdoc">
<p>Find next data or hole after the specified offset</p>
<p>If this request is answered with an error code of ENOSYS, this is treated as a permanent failure, i.e. all future <a class="el" href="structfuse__lowlevel__ops.html#a0da4080ebdb822f300e5d227924daf9b">lseek()</a> requests will fail with the same error code without being send to the filesystem process.</p>
<p>Valid replies: fuse_reply_lseek fuse_reply_err</p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">req</td><td>request handle </td></tr>
<tr><td class="paramname">ino</td><td>the inode number </td></tr>
<tr><td class="paramname">off</td><td>offset to start search from </td></tr>
<tr><td class="paramname">whence</td><td>either SEEK_DATA or SEEK_HOLE </td></tr>
<tr><td class="paramname">fi</td><td>file information </td></tr>
</table>
</dd>
</dl>
<p class="definition">Definition at line <a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h_source.html#l01266">1266</a> of file <a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h_source.html">fuse_lowlevel.h</a>.</p>
</div>
</div>
<a id="a23af0f6683447112848d9f1731e021d7"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a23af0f6683447112848d9f1731e021d7">◆ </a></span>mkdir</h2>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void(* fuse_lowlevel_ops::mkdir)(<a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h.html#a33e2aa4a8905a05397292ae047cd2257">fuse_req_t</a> req, <a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h.html#ad119a72f00b4cd2e4a500fd3364ae1e2">fuse_ino_t</a> parent, const char *name, mode_t mode)</td>
</tr>
</table>
</div><div class="memdoc">
<p>Create a directory</p>
<p>Valid replies: fuse_reply_entry fuse_reply_err</p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">req</td><td>request handle </td></tr>
<tr><td class="paramname">parent</td><td>inode number of the parent directory </td></tr>
<tr><td class="paramname">name</td><td>to create </td></tr>
<tr><td class="paramname">mode</td><td>with which to create the new file </td></tr>
</table>
</dd>
</dl>
<p class="definition">Definition at line <a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h_source.html#l00371">371</a> of file <a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h_source.html">fuse_lowlevel.h</a>.</p>
</div>
</div>
<a id="a5cd44aa96291fa366d4ef40e2d1d1d76"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a5cd44aa96291fa366d4ef40e2d1d1d76">◆ </a></span>mknod</h2>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void(* fuse_lowlevel_ops::mknod)(<a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h.html#a33e2aa4a8905a05397292ae047cd2257">fuse_req_t</a> req, <a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h.html#ad119a72f00b4cd2e4a500fd3364ae1e2">fuse_ino_t</a> parent, const char *name, mode_t mode, dev_t rdev)</td>
</tr>
</table>
</div><div class="memdoc">
<p>Create file node</p>
<p>Create a regular file, character device, block device, fifo or socket node.</p>
<p>Valid replies: fuse_reply_entry fuse_reply_err</p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">req</td><td>request handle </td></tr>
<tr><td class="paramname">parent</td><td>inode number of the parent directory </td></tr>
<tr><td class="paramname">name</td><td>to create </td></tr>
<tr><td class="paramname">mode</td><td>file type and mode with which to create the new file </td></tr>
<tr><td class="paramname">rdev</td><td>the device number (only valid if created file is a device) </td></tr>
</table>
</dd>
</dl>
<p class="definition">Definition at line <a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h_source.html#l00356">356</a> of file <a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h_source.html">fuse_lowlevel.h</a>.</p>
</div>
</div>
<a id="aab2f5186ecaa817e75ed443165288218"></a>
<h2 class="memtitle"><span class="permalink"><a href="#aab2f5186ecaa817e75ed443165288218">◆ </a></span>open</h2>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void(* fuse_lowlevel_ops::open)(<a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h.html#a33e2aa4a8905a05397292ae047cd2257">fuse_req_t</a> req, <a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h.html#ad119a72f00b4cd2e4a500fd3364ae1e2">fuse_ino_t</a> ino, struct <a class="el" href="structfuse__file__info.html">fuse_file_info</a> *fi)</td>
</tr>
</table>
</div><div class="memdoc">
<p>Open a file</p>
<p>Open flags are available in fi->flags. The following rules apply.</p>
<ul>
<li>Creation (O_CREAT, O_EXCL, O_NOCTTY) flags will be filtered out / handled by the kernel.</li>
<li>Access modes (O_RDONLY, O_WRONLY, O_RDWR) should be used by the filesystem to check if the operation is permitted. If the <code>-o default_permissions</code> mount option is given, this check is already done by the kernel before calling <a class="el" href="structfuse__lowlevel__ops.html#aab2f5186ecaa817e75ed443165288218">open()</a> and may thus be omitted by the filesystem.</li>
<li>When writeback caching is enabled, the kernel may send read requests even for files opened with O_WRONLY. The filesystem should be prepared to handle this.</li>
<li>When writeback caching is disabled, the filesystem is expected to properly handle the O_APPEND flag and ensure that each write is appending to the end of the file.</li>
<li>When writeback caching is enabled, the kernel will handle O_APPEND. However, unless all changes to the file come through the kernel this will not work reliably. The filesystem should thus either ignore the O_APPEND flag (and let the kernel handle it), or return an error (indicating that reliably O_APPEND is not available).</li>
</ul>
<p>Filesystem may store an arbitrary file handle (pointer, index, etc) in fi->fh, and use this in other all other file operations (read, write, flush, release, fsync).</p>
<p>Filesystem may also implement stateless file I/O and not store anything in fi->fh.</p>
<p>There are also some flags (direct_io, keep_cache) which the filesystem may set in fi, to change the way the file is opened. See <a class="el" href="structfuse__file__info.html">fuse_file_info</a> structure in <fuse_common.h> for more details.</p>
<p>If this request is answered with an error code of ENOSYS and FUSE_CAP_NO_OPEN_SUPPORT is set in <code><a class="el" href="structfuse__conn__info.html#a8a1c61f5d7cc14249fb6971165bb958e">fuse_conn_info.capable</a></code>, this is treated as success and future calls to open and release will also succeed without being sent to the filesystem process.</p>
<p>Valid replies: fuse_reply_open fuse_reply_err</p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">req</td><td>request handle </td></tr>
<tr><td class="paramname">ino</td><td>the inode number </td></tr>
<tr><td class="paramname">fi</td><td>file information </td></tr>
</table>
</dd>
</dl>
<p class="definition">Definition at line <a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h_source.html#l00527">527</a> of file <a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h_source.html">fuse_lowlevel.h</a>.</p>
</div>
</div>
<a id="a57a2c2d826fe11dd005d3275c3028d5e"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a57a2c2d826fe11dd005d3275c3028d5e">◆ </a></span>opendir</h2>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void(* fuse_lowlevel_ops::opendir)(<a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h.html#a33e2aa4a8905a05397292ae047cd2257">fuse_req_t</a> req, <a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h.html#ad119a72f00b4cd2e4a500fd3364ae1e2">fuse_ino_t</a> ino, struct <a class="el" href="structfuse__file__info.html">fuse_file_info</a> *fi)</td>
</tr>
</table>
</div><div class="memdoc">
<p>Open a directory</p>
<p>Filesystem may store an arbitrary file handle (pointer, index, etc) in fi->fh, and use this in other all other directory stream operations (readdir, releasedir, fsyncdir).</p>
<p>If this request is answered with an error code of ENOSYS and FUSE_CAP_NO_OPENDIR_SUPPORT is set in <code><a class="el" href="structfuse__conn__info.html#a8a1c61f5d7cc14249fb6971165bb958e">fuse_conn_info.capable</a></code>, this is treated as success and future calls to opendir and releasedir will also succeed without being sent to the filesystem process. In addition, the kernel will cache readdir results as if opendir returned FOPEN_KEEP_CACHE | FOPEN_CACHE_DIR.</p>
<p>Valid replies: fuse_reply_open fuse_reply_err</p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">req</td><td>request handle </td></tr>
<tr><td class="paramname">ino</td><td>the inode number </td></tr>
<tr><td class="paramname">fi</td><td>file information </td></tr>
</table>
</dd>
</dl>
<p class="definition">Definition at line <a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h_source.html#l00700">700</a> of file <a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h_source.html">fuse_lowlevel.h</a>.</p>
</div>
</div>
<a id="a50abf8a54b6c73a5a40123b6cf63c71e"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a50abf8a54b6c73a5a40123b6cf63c71e">◆ </a></span>poll</h2>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void(* fuse_lowlevel_ops::poll)(<a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h.html#a33e2aa4a8905a05397292ae047cd2257">fuse_req_t</a> req, <a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h.html#ad119a72f00b4cd2e4a500fd3364ae1e2">fuse_ino_t</a> ino, struct <a class="el" href="structfuse__file__info.html">fuse_file_info</a> *fi, struct fuse_pollhandle *ph)</td>
</tr>
</table>
</div><div class="memdoc">
<p>Poll for IO readiness</p>
<p>Note: If ph is non-NULL, the client should notify when IO readiness events occur by calling <a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h.html#ab078685b1f480188031fc40aa2e2fbca">fuse_lowlevel_notify_poll()</a> with the specified ph.</p>
<p>Regardless of the number of times poll with a non-NULL ph is received, single notification is enough to clear all. Notifying more times incurs overhead but doesn't harm correctness.</p>
<p>The callee is responsible for destroying ph with <a class="el" href="fuse-3_813_80_2include_2fuse__common_8h.html#adf5027f8a38b2efc03858efd7fdc756a">fuse_pollhandle_destroy()</a> when no longer in use.</p>
<p>If this request is answered with an error code of ENOSYS, this is treated as success (with a kernel-defined default poll-mask) and future calls to pull() will succeed the same way without being send to the filesystem process.</p>
<p>Valid replies: fuse_reply_poll fuse_reply_err</p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">req</td><td>request handle </td></tr>
<tr><td class="paramname">ino</td><td>the inode number </td></tr>
<tr><td class="paramname">fi</td><td>file information </td></tr>
<tr><td class="paramname">ph</td><td>poll handle to be used for notification </td></tr>
</table>
</dd>
</dl>
<p class="definition">Definition at line <a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h_source.html#l01080">1080</a> of file <a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h_source.html">fuse_lowlevel.h</a>.</p>
</div>
</div>
<a id="ab7b740dccdc6ddc388cdcd7897e4c2e3"></a>
<h2 class="memtitle"><span class="permalink"><a href="#ab7b740dccdc6ddc388cdcd7897e4c2e3">◆ </a></span>read</h2>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void(* fuse_lowlevel_ops::read)(<a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h.html#a33e2aa4a8905a05397292ae047cd2257">fuse_req_t</a> req, <a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h.html#ad119a72f00b4cd2e4a500fd3364ae1e2">fuse_ino_t</a> ino, size_t size, off_t off, struct <a class="el" href="structfuse__file__info.html">fuse_file_info</a> *fi)</td>
</tr>
</table>
</div><div class="memdoc">
<p>Read data</p>
<p>Read should send exactly the number of bytes requested except on EOF or error, otherwise the rest of the data will be substituted with zeroes. An exception to this is when the file has been opened in 'direct_io' mode, in which case the return value of the read system call will reflect the return value of this operation.</p>
<p>fi->fh will contain the value set by the open method, or will be undefined if the open method didn't set any value.</p>
<p>Valid replies: fuse_reply_buf fuse_reply_iov fuse_reply_data fuse_reply_err</p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">req</td><td>request handle </td></tr>
<tr><td class="paramname">ino</td><td>the inode number </td></tr>
<tr><td class="paramname">size</td><td>number of bytes to read </td></tr>
<tr><td class="paramname">off</td><td>offset to read from </td></tr>
<tr><td class="paramname">fi</td><td>file information </td></tr>
</table>
</dd>
</dl>
<p class="definition">Definition at line <a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h_source.html#l00555">555</a> of file <a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h_source.html">fuse_lowlevel.h</a>.</p>
</div>
</div>
<a id="af1ef8e59e0cb0b02dc0e406898aeaa51"></a>
<h2 class="memtitle"><span class="permalink"><a href="#af1ef8e59e0cb0b02dc0e406898aeaa51">◆ </a></span>readdir</h2>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void(* fuse_lowlevel_ops::readdir)(<a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h.html#a33e2aa4a8905a05397292ae047cd2257">fuse_req_t</a> req, <a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h.html#ad119a72f00b4cd2e4a500fd3364ae1e2">fuse_ino_t</a> ino, size_t size, off_t off, struct <a class="el" href="structfuse__file__info.html">fuse_file_info</a> *fi)</td>
</tr>
</table>
</div><div class="memdoc">
<p>Read directory</p>
<p>Send a buffer filled using <a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h.html#ad1957bcc8ece8c90f16c42c4daf3053f">fuse_add_direntry()</a>, with size not exceeding the requested size. Send an empty buffer on end of stream.</p>
<p>fi->fh will contain the value set by the opendir method, or will be undefined if the opendir method didn't set any value.</p>
<p>Returning a directory entry from <a class="el" href="structfuse__lowlevel__ops.html#af1ef8e59e0cb0b02dc0e406898aeaa51">readdir()</a> does not affect its lookup count.</p>
<p>If off_t is non-zero, then it will correspond to one of the off_t values that was previously returned by <a class="el" href="structfuse__lowlevel__ops.html#af1ef8e59e0cb0b02dc0e406898aeaa51">readdir()</a> for the same directory handle. In this case, <a class="el" href="structfuse__lowlevel__ops.html#af1ef8e59e0cb0b02dc0e406898aeaa51">readdir()</a> should skip over entries coming before the position defined by the off_t value. If entries are added or removed while the directory handle is open, the filesystem may still include the entries that have been removed, and may not report the entries that have been created. However, addition or removal of entries must never cause <a class="el" href="structfuse__lowlevel__ops.html#af1ef8e59e0cb0b02dc0e406898aeaa51">readdir()</a> to skip over unrelated entries or to report them more than once. This means that off_t can not be a simple index that enumerates the entries that have been returned but must contain sufficient information to uniquely determine the next directory entry to return even when the set of entries is changing.</p>
<p>The function does not have to report the '.' and '..' entries, but is allowed to do so. Note that, if readdir does not return '.' or '..', they will not be implicitly returned, and this behavior is observable by the caller.</p>
<p>Valid replies: fuse_reply_buf fuse_reply_data fuse_reply_err</p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">req</td><td>request handle </td></tr>
<tr><td class="paramname">ino</td><td>the inode number </td></tr>
<tr><td class="paramname">size</td><td>maximum number of bytes to send </td></tr>
<tr><td class="paramname">off</td><td>offset to continue reading the directory stream </td></tr>
<tr><td class="paramname">fi</td><td>file information </td></tr>
</table>
</dd>
</dl>
<p class="definition">Definition at line <a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h_source.html#l00746">746</a> of file <a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h_source.html">fuse_lowlevel.h</a>.</p>
</div>
</div>
<a id="af621ef96ffc2a71af8c7768c109b880e"></a>
<h2 class="memtitle"><span class="permalink"><a href="#af621ef96ffc2a71af8c7768c109b880e">◆ </a></span>readdirplus</h2>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void(* fuse_lowlevel_ops::readdirplus)(<a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h.html#a33e2aa4a8905a05397292ae047cd2257">fuse_req_t</a> req, <a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h.html#ad119a72f00b4cd2e4a500fd3364ae1e2">fuse_ino_t</a> ino, size_t size, off_t off, struct <a class="el" href="structfuse__file__info.html">fuse_file_info</a> *fi)</td>
</tr>
</table>
</div><div class="memdoc">
<p>Read directory with attributes</p>
<p>Send a buffer filled using <a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h.html#a34f3f1beebacab5f717d95baf832a8a5">fuse_add_direntry_plus()</a>, with size not exceeding the requested size. Send an empty buffer on end of stream.</p>
<p>fi->fh will contain the value set by the opendir method, or will be undefined if the opendir method didn't set any value.</p>
<p>In contrast to <a class="el" href="structfuse__lowlevel__ops.html#af1ef8e59e0cb0b02dc0e406898aeaa51">readdir()</a> (which does not affect the lookup counts), the lookup count of every entry returned by <a class="el" href="structfuse__lowlevel__ops.html#af621ef96ffc2a71af8c7768c109b880e">readdirplus()</a>, except "." and "..", is incremented by one.</p>
<p>Valid replies: fuse_reply_buf fuse_reply_data fuse_reply_err</p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">req</td><td>request handle </td></tr>
<tr><td class="paramname">ino</td><td>the inode number </td></tr>
<tr><td class="paramname">size</td><td>maximum number of bytes to send </td></tr>
<tr><td class="paramname">off</td><td>offset to continue reading the directory stream </td></tr>
<tr><td class="paramname">fi</td><td>file information </td></tr>
</table>
</dd>
</dl>
<p class="definition">Definition at line <a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h_source.html#l01209">1209</a> of file <a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h_source.html">fuse_lowlevel.h</a>.</p>
</div>
</div>
<a id="ae1032649069ae28d46bde76a40743fcf"></a>
<h2 class="memtitle"><span class="permalink"><a href="#ae1032649069ae28d46bde76a40743fcf">◆ </a></span>readlink</h2>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void(* fuse_lowlevel_ops::readlink)(<a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h.html#a33e2aa4a8905a05397292ae047cd2257">fuse_req_t</a> req, <a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h.html#ad119a72f00b4cd2e4a500fd3364ae1e2">fuse_ino_t</a> ino)</td>
</tr>
</table>
</div><div class="memdoc">
<p>Read symbolic link</p>
<p>Valid replies: fuse_reply_readlink fuse_reply_err</p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">req</td><td>request handle </td></tr>
<tr><td class="paramname">ino</td><td>the inode number </td></tr>
</table>
</dd>
</dl>
<p class="definition">Definition at line <a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h_source.html#l00338">338</a> of file <a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h_source.html">fuse_lowlevel.h</a>.</p>
</div>
</div>
<a id="abc49c6310cd0eaddf116988426ca21d2"></a>
<h2 class="memtitle"><span class="permalink"><a href="#abc49c6310cd0eaddf116988426ca21d2">◆ </a></span>release</h2>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void(* fuse_lowlevel_ops::release)(<a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h.html#a33e2aa4a8905a05397292ae047cd2257">fuse_req_t</a> req, <a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h.html#ad119a72f00b4cd2e4a500fd3364ae1e2">fuse_ino_t</a> ino, struct <a class="el" href="structfuse__file__info.html">fuse_file_info</a> *fi)</td>
</tr>
</table>
</div><div class="memdoc">
<p>Release an open file</p>
<p>Release is called when there are no more references to an open file: all file descriptors are closed and all memory mappings are unmapped.</p>
<p>For every open call there will be exactly one release call (unless the filesystem is force-unmounted).</p>
<p>The filesystem may reply with an error, but error values are not returned to close() or munmap() which triggered the release.</p>
<p>fi->fh will contain the value set by the open method, or will be undefined if the open method didn't set any value. fi->flags will contain the same flags as for open.</p>
<p>Valid replies: fuse_reply_err</p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">req</td><td>request handle </td></tr>
<tr><td class="paramname">ino</td><td>the inode number </td></tr>
<tr><td class="paramname">fi</td><td>file information </td></tr>
</table>
</dd>
</dl>
<p class="definition">Definition at line <a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h_source.html#l00653">653</a> of file <a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h_source.html">fuse_lowlevel.h</a>.</p>
</div>
</div>
<a id="abfc54ffe5fa5778fc273a6666494d802"></a>
<h2 class="memtitle"><span class="permalink"><a href="#abfc54ffe5fa5778fc273a6666494d802">◆ </a></span>releasedir</h2>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void(* fuse_lowlevel_ops::releasedir)(<a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h.html#a33e2aa4a8905a05397292ae047cd2257">fuse_req_t</a> req, <a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h.html#ad119a72f00b4cd2e4a500fd3364ae1e2">fuse_ino_t</a> ino, struct <a class="el" href="structfuse__file__info.html">fuse_file_info</a> *fi)</td>
</tr>
</table>
</div><div class="memdoc">
<p>Release an open directory</p>
<p>For every opendir call there will be exactly one releasedir call (unless the filesystem is force-unmounted).</p>
<p>fi->fh will contain the value set by the opendir method, or will be undefined if the opendir method didn't set any value.</p>
<p>Valid replies: fuse_reply_err</p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">req</td><td>request handle </td></tr>
<tr><td class="paramname">ino</td><td>the inode number </td></tr>
<tr><td class="paramname">fi</td><td>file information </td></tr>
</table>
</dd>
</dl>
<p class="definition">Definition at line <a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h_source.html#l00765">765</a> of file <a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h_source.html">fuse_lowlevel.h</a>.</p>
</div>
</div>
<a id="a15be6632986e6be8660071e1d71ffe51"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a15be6632986e6be8660071e1d71ffe51">◆ </a></span>removexattr</h2>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void(* fuse_lowlevel_ops::removexattr)(<a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h.html#a33e2aa4a8905a05397292ae047cd2257">fuse_req_t</a> req, <a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h.html#ad119a72f00b4cd2e4a500fd3364ae1e2">fuse_ino_t</a> ino, const char *name)</td>
</tr>
</table>
</div><div class="memdoc">
<p>Remove an extended attribute</p>
<p>If this request is answered with an error code of ENOSYS, this is treated as a permanent failure with error code EOPNOTSUPP, i.e. all future <a class="el" href="structfuse__lowlevel__ops.html#a15be6632986e6be8660071e1d71ffe51">removexattr()</a> requests will fail with EOPNOTSUPP without being send to the filesystem process.</p>
<p>Valid replies: fuse_reply_err</p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">req</td><td>request handle </td></tr>
<tr><td class="paramname">ino</td><td>the inode number </td></tr>
<tr><td class="paramname">name</td><td>of the extended attribute </td></tr>
</table>
</dd>
</dl>
<p class="definition">Definition at line <a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h_source.html#l00895">895</a> of file <a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h_source.html">fuse_lowlevel.h</a>.</p>
</div>
</div>
<a id="a46d76dee9cf1741c364e5be955885248"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a46d76dee9cf1741c364e5be955885248">◆ </a></span>rename</h2>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void(* fuse_lowlevel_ops::rename)(<a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h.html#a33e2aa4a8905a05397292ae047cd2257">fuse_req_t</a> req, <a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h.html#ad119a72f00b4cd2e4a500fd3364ae1e2">fuse_ino_t</a> parent, const char *name, <a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h.html#ad119a72f00b4cd2e4a500fd3364ae1e2">fuse_ino_t</a> newparent, const char *newname, unsigned int flags)</td>
</tr>
</table>
</div><div class="memdoc">
<p>Rename a file</p>
<p>If the target exists it should be atomically replaced. If the target's inode's lookup count is non-zero, the file system is expected to postpone any removal of the inode until the lookup count reaches zero (see description of the forget function).</p>
<p>If this request is answered with an error code of ENOSYS, this is treated as a permanent failure with error code EINVAL, i.e. all future bmap requests will fail with EINVAL without being send to the filesystem process.</p>
<p><em>flags</em> may be <code>RENAME_EXCHANGE</code> or <code>RENAME_NOREPLACE</code>. If RENAME_NOREPLACE is specified, the filesystem must not overwrite <em>newname</em> if it exists and return an error instead. If <code>RENAME_EXCHANGE</code> is specified, the filesystem must atomically exchange the two files, i.e. both must exist and neither may be deleted.</p>
<p>Valid replies: fuse_reply_err</p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">req</td><td>request handle </td></tr>
<tr><td class="paramname">parent</td><td>inode number of the old parent directory </td></tr>
<tr><td class="paramname">name</td><td>old name </td></tr>
<tr><td class="paramname">newparent</td><td>inode number of the new parent directory </td></tr>
<tr><td class="paramname">newname</td><td>new name </td></tr>
</table>
</dd>
</dl>
<p class="definition">Definition at line <a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h_source.html#l00452">452</a> of file <a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h_source.html">fuse_lowlevel.h</a>.</p>
</div>
</div>
<a id="a1c1d7ad0c1fb40d7180660e7f3f7f089"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a1c1d7ad0c1fb40d7180660e7f3f7f089">◆ </a></span>retrieve_reply</h2>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void(* fuse_lowlevel_ops::retrieve_reply)(<a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h.html#a33e2aa4a8905a05397292ae047cd2257">fuse_req_t</a> req, void *cookie, <a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h.html#ad119a72f00b4cd2e4a500fd3364ae1e2">fuse_ino_t</a> ino, off_t offset, struct <a class="el" href="structfuse__bufvec.html">fuse_bufvec</a> *bufv)</td>
</tr>
</table>
</div><div class="memdoc">
<p>Callback function for the retrieve request</p>
<p>Valid replies: fuse_reply_none</p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">req</td><td>request handle </td></tr>
<tr><td class="paramname">cookie</td><td>user data supplied to <a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h.html#a58cb3543209d2c29dc2830f2503b5058">fuse_lowlevel_notify_retrieve()</a> </td></tr>
<tr><td class="paramname">ino</td><td>the inode number supplied to <a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h.html#a58cb3543209d2c29dc2830f2503b5058">fuse_lowlevel_notify_retrieve()</a> </td></tr>
<tr><td class="paramname">offset</td><td>the offset supplied to <a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h.html#a58cb3543209d2c29dc2830f2503b5058">fuse_lowlevel_notify_retrieve()</a> </td></tr>
<tr><td class="paramname">bufv</td><td>the buffer containing the returned data </td></tr>
</table>
</dd>
</dl>
<p class="definition">Definition at line <a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h_source.html#l01126">1126</a> of file <a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h_source.html">fuse_lowlevel.h</a>.</p>
</div>
</div>
<a id="a3cbf1eaf4366aed47fa5d991ea5ff0d5"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a3cbf1eaf4366aed47fa5d991ea5ff0d5">◆ </a></span>rmdir</h2>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void(* fuse_lowlevel_ops::rmdir)(<a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h.html#a33e2aa4a8905a05397292ae047cd2257">fuse_req_t</a> req, <a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h.html#ad119a72f00b4cd2e4a500fd3364ae1e2">fuse_ino_t</a> parent, const char *name)</td>
</tr>
</table>
</div><div class="memdoc">
<p>Remove a directory</p>
<p>If the directory's inode's lookup count is non-zero, the file system is expected to postpone any removal of the inode until the lookup count reaches zero (see description of the forget function).</p>
<p>Valid replies: fuse_reply_err</p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">req</td><td>request handle </td></tr>
<tr><td class="paramname">parent</td><td>inode number of the parent directory </td></tr>
<tr><td class="paramname">name</td><td>to remove </td></tr>
</table>
</dd>
</dl>
<p class="definition">Definition at line <a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h_source.html#l00406">406</a> of file <a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h_source.html">fuse_lowlevel.h</a>.</p>
</div>
</div>
<a id="a6a95408dd79575df7f6c64e55f1e973b"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a6a95408dd79575df7f6c64e55f1e973b">◆ </a></span>setattr</h2>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void(* fuse_lowlevel_ops::setattr)(<a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h.html#a33e2aa4a8905a05397292ae047cd2257">fuse_req_t</a> req, <a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h.html#ad119a72f00b4cd2e4a500fd3364ae1e2">fuse_ino_t</a> ino, struct stat *attr, int to_set, struct <a class="el" href="structfuse__file__info.html">fuse_file_info</a> *fi)</td>
</tr>
</table>
</div><div class="memdoc">
<p>Set file attributes</p>
<p>In the 'attr' argument only members indicated by the 'to_set' bitmask contain valid values. Other members contain undefined values.</p>
<p>Unless FUSE_CAP_HANDLE_KILLPRIV is disabled, this method is expected to reset the setuid and setgid bits if the file size or owner is being changed.</p>
<p>If the setattr was invoked from the ftruncate() system call under Linux kernel versions 2.6.15 or later, the fi->fh will contain the value set by the open method or will be undefined if the open method didn't set any value. Otherwise (not ftruncate call, or kernel version earlier than 2.6.15) the fi parameter will be NULL.</p>
<p>Valid replies: fuse_reply_attr fuse_reply_err</p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">req</td><td>request handle </td></tr>
<tr><td class="paramname">ino</td><td>the inode number </td></tr>
<tr><td class="paramname">attr</td><td>the attributes </td></tr>
<tr><td class="paramname">to_set</td><td>bit mask of attributes which should be set </td></tr>
<tr><td class="paramname">fi</td><td>file information, or NULL </td></tr>
</table>
</dd>
</dl>
<p class="definition">Definition at line <a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h_source.html#l00325">325</a> of file <a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h_source.html">fuse_lowlevel.h</a>.</p>
</div>
</div>
<a id="af290d78441583d1d6ba02da01904f328"></a>
<h2 class="memtitle"><span class="permalink"><a href="#af290d78441583d1d6ba02da01904f328">◆ </a></span>setlk</h2>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void(* fuse_lowlevel_ops::setlk)(<a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h.html#a33e2aa4a8905a05397292ae047cd2257">fuse_req_t</a> req, <a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h.html#ad119a72f00b4cd2e4a500fd3364ae1e2">fuse_ino_t</a> ino, struct <a class="el" href="structfuse__file__info.html">fuse_file_info</a> *fi, struct <a class="el" href="structfuse__lowlevel__ops.html#a01b103e34d751d0456add93d9c34e711">flock</a> *lock, int sleep)</td>
</tr>
</table>
</div><div class="memdoc">
<p>Acquire, modify or release a POSIX file lock</p>
<p>For POSIX threads (NPTL) there's a 1-1 relation between pid and owner, but otherwise this is not always the case. For checking lock ownership, 'fi->owner' must be used. The l_pid field in 'struct flock' should only be used to fill in this field in <a class="el" href="structfuse__lowlevel__ops.html#a709d41ca0cde37dbd4d4d06c89f6906a">getlk()</a>.</p>
<p>Note: if the locking methods are not implemented, the kernel will still allow file locking to work locally. Hence these are only interesting for network filesystems and similar.</p>
<p>Valid replies: fuse_reply_err</p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">req</td><td>request handle </td></tr>
<tr><td class="paramname">ino</td><td>the inode number </td></tr>
<tr><td class="paramname">fi</td><td>file information </td></tr>
<tr><td class="paramname">lock</td><td>the region/type to set </td></tr>
<tr><td class="paramname">sleep</td><td>locking operation may sleep </td></tr>
</table>
</dd>
</dl>
<p class="definition">Definition at line <a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h_source.html#l00986">986</a> of file <a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h_source.html">fuse_lowlevel.h</a>.</p>
</div>
</div>
<a id="ab80c4081204c07a423c3c88b116f3086"></a>
<h2 class="memtitle"><span class="permalink"><a href="#ab80c4081204c07a423c3c88b116f3086">◆ </a></span>setxattr</h2>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void(* fuse_lowlevel_ops::setxattr)(<a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h.html#a33e2aa4a8905a05397292ae047cd2257">fuse_req_t</a> req, <a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h.html#ad119a72f00b4cd2e4a500fd3364ae1e2">fuse_ino_t</a> ino, const char *name, const char *value, size_t size, int flags)</td>
</tr>
</table>
</div><div class="memdoc">
<p>Set an extended attribute</p>
<p>If this request is answered with an error code of ENOSYS, this is treated as a permanent failure with error code EOPNOTSUPP, i.e. all future <a class="el" href="structfuse__lowlevel__ops.html#ab80c4081204c07a423c3c88b116f3086">setxattr()</a> requests will fail with EOPNOTSUPP without being send to the filesystem process.</p>
<p>Valid replies: fuse_reply_err </p>
<p class="definition">Definition at line <a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h_source.html#l00816">816</a> of file <a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h_source.html">fuse_lowlevel.h</a>.</p>
</div>
</div>
<a id="aeea156121a28b519e284451721fb7d25"></a>
<h2 class="memtitle"><span class="permalink"><a href="#aeea156121a28b519e284451721fb7d25">◆ </a></span>statfs</h2>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void(* fuse_lowlevel_ops::statfs)(<a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h.html#a33e2aa4a8905a05397292ae047cd2257">fuse_req_t</a> req, <a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h.html#ad119a72f00b4cd2e4a500fd3364ae1e2">fuse_ino_t</a> ino)</td>
</tr>
</table>
</div><div class="memdoc">
<p>Get file system statistics</p>
<p>Valid replies: fuse_reply_statfs fuse_reply_err</p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">req</td><td>request handle </td></tr>
<tr><td class="paramname">ino</td><td>the inode number, zero means "undefined" </td></tr>
</table>
</dd>
</dl>
<p class="definition">Definition at line <a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h_source.html#l00803">803</a> of file <a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h_source.html">fuse_lowlevel.h</a>.</p>
</div>
</div>
<a id="a30455cc58397c5a45434492d93a71af4"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a30455cc58397c5a45434492d93a71af4">◆ </a></span>symlink</h2>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void(* fuse_lowlevel_ops::symlink)(<a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h.html#a33e2aa4a8905a05397292ae047cd2257">fuse_req_t</a> req, const char *<a class="el" href="structfuse__lowlevel__ops.html#a406798b81f44a8b54f188455c31b9be8">link</a>, <a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h.html#ad119a72f00b4cd2e4a500fd3364ae1e2">fuse_ino_t</a> parent, const char *name)</td>
</tr>
</table>
</div><div class="memdoc">
<p>Create a symbolic link</p>
<p>Valid replies: fuse_reply_entry fuse_reply_err</p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">req</td><td>request handle </td></tr>
<tr><td class="paramname">link</td><td>the contents of the symbolic link </td></tr>
<tr><td class="paramname">parent</td><td>inode number of the parent directory </td></tr>
<tr><td class="paramname">name</td><td>to create </td></tr>
</table>
</dd>
</dl>
<p class="definition">Definition at line <a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h_source.html#l00420">420</a> of file <a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h_source.html">fuse_lowlevel.h</a>.</p>
</div>
</div>
<a id="afb6e186f5cbe806d3838a51c112a97ee"></a>
<h2 class="memtitle"><span class="permalink"><a href="#afb6e186f5cbe806d3838a51c112a97ee">◆ </a></span>unlink</h2>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void(* fuse_lowlevel_ops::unlink)(<a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h.html#a33e2aa4a8905a05397292ae047cd2257">fuse_req_t</a> req, <a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h.html#ad119a72f00b4cd2e4a500fd3364ae1e2">fuse_ino_t</a> parent, const char *name)</td>
</tr>
</table>
</div><div class="memdoc">
<p>Remove a file</p>
<p>If the file's inode's lookup count is non-zero, the file system is expected to postpone any removal of the inode until the lookup count reaches zero (see description of the forget function).</p>
<p>Valid replies: fuse_reply_err</p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">req</td><td>request handle </td></tr>
<tr><td class="paramname">parent</td><td>inode number of the parent directory </td></tr>
<tr><td class="paramname">name</td><td>to remove </td></tr>
</table>
</dd>
</dl>
<p class="definition">Definition at line <a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h_source.html#l00389">389</a> of file <a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h_source.html">fuse_lowlevel.h</a>.</p>
</div>
</div>
<a id="a09cc5c1078cfb909513b5ca27464f53a"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a09cc5c1078cfb909513b5ca27464f53a">◆ </a></span>write</h2>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void(* fuse_lowlevel_ops::write)(<a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h.html#a33e2aa4a8905a05397292ae047cd2257">fuse_req_t</a> req, <a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h.html#ad119a72f00b4cd2e4a500fd3364ae1e2">fuse_ino_t</a> ino, const char *buf, size_t size, off_t off, struct <a class="el" href="structfuse__file__info.html">fuse_file_info</a> *fi)</td>
</tr>
</table>
</div><div class="memdoc">
<p>Write data</p>
<p>Write should return exactly the number of bytes requested except on error. An exception to this is when the file has been opened in 'direct_io' mode, in which case the return value of the write system call will reflect the return value of this operation.</p>
<p>Unless FUSE_CAP_HANDLE_KILLPRIV is disabled, this method is expected to reset the setuid and setgid bits.</p>
<p>fi->fh will contain the value set by the open method, or will be undefined if the open method didn't set any value.</p>
<p>Valid replies: fuse_reply_write fuse_reply_err</p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">req</td><td>request handle </td></tr>
<tr><td class="paramname">ino</td><td>the inode number </td></tr>
<tr><td class="paramname">buf</td><td>data to write </td></tr>
<tr><td class="paramname">size</td><td>number of bytes to write </td></tr>
<tr><td class="paramname">off</td><td>offset to write to </td></tr>
<tr><td class="paramname">fi</td><td>file information </td></tr>
</table>
</dd>
</dl>
<p class="definition">Definition at line <a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h_source.html#l00584">584</a> of file <a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h_source.html">fuse_lowlevel.h</a>.</p>
</div>
</div>
<a id="a3b40ed06d1297f244363a8dcd40d44aa"></a>
<h2 class="memtitle"><span class="permalink"><a href="#a3b40ed06d1297f244363a8dcd40d44aa">◆ </a></span>write_buf</h2>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">void(* fuse_lowlevel_ops::write_buf)(<a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h.html#a33e2aa4a8905a05397292ae047cd2257">fuse_req_t</a> req, <a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h.html#ad119a72f00b4cd2e4a500fd3364ae1e2">fuse_ino_t</a> ino, struct <a class="el" href="structfuse__bufvec.html">fuse_bufvec</a> *bufv, off_t off, struct <a class="el" href="structfuse__file__info.html">fuse_file_info</a> *fi)</td>
</tr>
</table>
</div><div class="memdoc">
<p>Write data made available in a buffer</p>
<p>This is a more generic version of the -><a class="el" href="structfuse__lowlevel__ops.html#a09cc5c1078cfb909513b5ca27464f53a">write()</a> method. If FUSE_CAP_SPLICE_READ is set in <a class="el" href="structfuse__conn__info.html#af45de81548b591f3004353a324e4e04d">fuse_conn_info.want</a> and the kernel supports splicing from the fuse device, then the data will be made available in pipe for supporting zero copy data transfer.</p>
<p>buf->count is guaranteed to be one (and thus buf->idx is always zero). The write_buf handler must ensure that bufv->off is correctly updated (reflecting the number of bytes read from bufv->buf[0]).</p>
<p>Unless FUSE_CAP_HANDLE_KILLPRIV is disabled, this method is expected to reset the setuid and setgid bits.</p>
<p>Valid replies: fuse_reply_write fuse_reply_err</p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">req</td><td>request handle </td></tr>
<tr><td class="paramname">ino</td><td>the inode number </td></tr>
<tr><td class="paramname">bufv</td><td>buffer containing the data </td></tr>
<tr><td class="paramname">off</td><td>offset to write to </td></tr>
<tr><td class="paramname">fi</td><td>file information </td></tr>
</table>
</dd>
</dl>
<p class="definition">Definition at line <a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h_source.html#l01110">1110</a> of file <a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h_source.html">fuse_lowlevel.h</a>.</p>
</div>
</div>
<hr/>The documentation for this struct was generated from the following file:<ul>
<li>fuse-3.13.0/include/<a class="el" href="fuse-3_813_80_2include_2fuse__lowlevel_8h_source.html">fuse_lowlevel.h</a></li>
</ul>
</div><!-- contents -->
<!-- start footer part -->
<hr class="footer"/><address class="footer"><small>
Generated by <a href="https://www.doxygen.org/index.html"><img class="footer" src="doxygen.svg" width="104" height="31" alt="doxygen"/></a> 1.9.1
</small></address>
</body>
</html>
|