search for: cp_label

Displaying 4 results from an estimated 4 matches for "cp_label".

Did you mean: p_label
2016 Jan 07
2
Domain name search path use during PXE booting
...dp = DomainSearch; /* end of the last completed domain string */ + const uint8_t *cpp; /* copy pointer used to follow pointers */ + int pcount; /* number of pointers visited in current point copy */ + int len; + enum { START, LABEL, ADD_LABEL, ADD_DOT, CP_LEN_1, CP_LABEL, CP_ADD_LABEL, + CP_ADD_DOT, CP_LEN_2, FINISH, END } state, postcpstate; + + state = START; + while (state != END) { + switch (state) { + case START: + cpp = udata; + state = LABEL; + break; + + case LABEL: + len =...
2016 Jan 07
0
Domain name search path use during PXE booting
...the last completed domain string > */ > + const uint8_t *cpp; /* copy pointer used to follow pointers */ > + int pcount; /* number of pointers visited in current > point copy */ > + int len; > + enum { START, LABEL, ADD_LABEL, ADD_DOT, CP_LEN_1, CP_LABEL, > CP_ADD_LABEL, > + CP_ADD_DOT, CP_LEN_2, FINISH, END } state, postcpstate; > + > + state = START; > + while (state != END) { > + switch (state) { > + case START: > + cpp = udata; > + state = LABEL; > + br...
2016 Jan 08
1
Domain name search path use during PXE booting
...n string >> */ >> + const uint8_t *cpp; /* copy pointer used to follow pointers */ >> + int pcount; /* number of pointers visited in current >> point copy */ >> + int len; >> + enum { START, LABEL, ADD_LABEL, ADD_DOT, CP_LEN_1, CP_LABEL, >> CP_ADD_LABEL, >> + CP_ADD_DOT, CP_LEN_2, FINISH, END } state, postcpstate; >> + >> + state = START; >> + while (state != END) { >> + switch (state) { >> + case START: >> + cpp = udata; >> +...
2010 Feb 25
3
[PATCH 1/3] drm/nv50: Implement ctxprog/state generation.
...hannel, and load the new context. Context consists of three major + * parts: subset of MMIO registers and two "xfer areas". + */ + +/* TODO: + * - document unimplemented bits compared to nvidia + * - NVAx: make a TP subroutine, use it. + * - use 0x4008fc instead of 0x1540? + */ + +enum cp_label { + cp_check_load = 1, + cp_setup_auto_load, + cp_setup_load, + cp_setup_save, + cp_swap_state, + cp_prepare_exit, + cp_exit, +}; + +static void nv50_graph_construct_mmio(struct nouveau_grctx *ctx); +static void nv50_graph_construct_xfer1(struct nouveau_grctx *ctx); +static void nv50_graph_construc...