summaryrefslogtreecommitdiffstats
path: root/arch/sparc/net
Commit message (Collapse)AuthorAgeFilesLines
* sparc bpf_jit: support BPF_S_ANC_ALU_XOR_X instructionDavid S. Miller2012-06-061-0/+4
| | | | Signed-off-by: David S. Miller <davem@davemloft.net>
* net: filter: remove unused cpu_off in sparc JITEric Dumazet2012-04-181-2/+0Star
| | | | | Signed-off-by: Eric Dumazet <eric.dumazet@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
* net: filter: Fix some more small issues in sparc JIT.David S. Miller2012-04-173-44/+84
| | | | | | | | | | | | | | | | | | | | | Fix mixed space and tabs. Put bpf_jit_load_*[] externs into bpf_jit.h "while(0)" --> "while (0)" "COND (X)" --> "COND(X)" Document branch offset calculations, and bpf_error's return sequence. Document the reason we need to emit three nops between the %y register write and the divide instruction. Remove erroneous trailing semicolons from emit_read_y() and emit_write_y(). Based upon feedback from Sam Ravnborg. Signed-off-by: David S. Miller <davem@davemloft.net>
* net: filter: Fix some minor issues in sparc JIT.David S. Miller2012-04-173-5/+6
| | | | | | | | | | | | | | | Correct conventions comments. %o4 and %o5 were swapped, %g3 was not documented. Use r_TMP instead of r_SKB_DATA + r_OFF where possible in assembler stubs. Correct discussion of %o4 and %o5 in one of bpf_jit_compile()'s comments. Based upon feedback from Richard Mortimer. Signed-off-by: David S. Miller <davem@davemloft.net>
* net: filter: Just In Time compiler for sparcDavid S. Miller2012-04-174-0/+1040
Signed-off-by: David S. Miller <davem@davemloft.net>