Home
last modified time | relevance | path

Searched refs:NBD_FLAG_NO_ZEROES (Results 1 – 5 of 5) sorted by relevance

/openbmc/webui-vue/src/utilities/
H A DNBDServer.js3 const NBD_FLAG_NO_ZEROES = 0x2; constant
126 data.setUint16(16, NBD_FLAG_FIXED_NEWSTYLE | NBD_FLAG_NO_ZEROES);
155 if (!(this.client.flags & NBD_FLAG_NO_ZEROES)) n += 124;
/openbmc/phosphor-webui/app/server-control/controllers/
H A Dvirtual-media-controller.js75 const NBD_FLAG_NO_ZEROES = 0x2; constant
202 data.setUint16(16, NBD_FLAG_FIXED_NEWSTYLE | NBD_FLAG_NO_ZEROES);
241 if (!(this.client.flags & NBD_FLAG_NO_ZEROES)) n += 124;
/openbmc/qemu/include/block/
H A Dnbd.h232 #define NBD_FLAG_NO_ZEROES (1 << 1) /* End handshake without zeroes. */ macro
/openbmc/qemu/nbd/
H A Dclient.c949 if (globalflags & NBD_FLAG_NO_ZEROES) { in nbd_start_negotiate()
H A Dserver.c1421 stw_be_p(buf + 16, NBD_FLAG_FIXED_NEWSTYLE | NBD_FLAG_NO_ZEROES); in nbd_negotiate()