Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
d1fcbf5
Refactor buffer management and update configuration handling
KeithWiles Feb 24, 2026
4db75ee
[pre-commit.ci] pre-commit autoupdate
pre-commit-ci[bot] Mar 2, 2026
12c2373
build(deps): bump actions/upload-artifact in the github-actions group
dependabot[bot] Mar 2, 2026
e81373e
[pre-commit.ci] pre-commit autoupdate
pre-commit-ci[bot] Mar 9, 2026
a62e8af
build(deps): bump the github-actions group with 2 updates
dependabot[bot] Mar 9, 2026
8cb0171
[pre-commit.ci] pre-commit autoupdate
pre-commit-ci[bot] Mar 16, 2026
cfc11d3
[pre-commit.ci] pre-commit autoupdate
pre-commit-ci[bot] Mar 30, 2026
212965a
build(deps): bump fedora in /containerization/docker/fedora
dependabot[bot] May 5, 2026
8bd1a99
[pre-commit.ci] pre-commit autoupdate
pre-commit-ci[bot] Apr 27, 2026
eee3d22
Potential fix for pull request finding
KeithWiles May 5, 2026
af9945a
build(deps): bump pygments from 2.15.0 to 2.20.0 in /tools
dependabot[bot] May 5, 2026
627fddc
fix typos
KeithWiles Mar 5, 2026
6fc699b
Merge branch 'main' into mbuf-build-updates
KeithWiles May 5, 2026
e942bda
style: format code for better readability in multiple files
KeithWiles May 5, 2026
6e36142
style: improve script documentation and formatting in cne-build.sh
KeithWiles May 5, 2026
00108d4
Merge branch 'main' into mbuf-build-updates
KeithWiles May 5, 2026
0d67fc0
chore: remove markdownlint-cli2 from pre-commit skip list
KeithWiles May 5, 2026
a0d3858
Merge branch 'main' into mbuf-build-updates
KeithWiles May 5, 2026
ef59597
refactor: change char pointers to const char in multiple files for be…
KeithWiles May 5, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,5 +39,4 @@ ci:
autoupdate_branch: ''
autoupdate_commit_msg: '[pre-commit.ci] pre-commit autoupdate'
autoupdate_schedule: weekly
skip: [markdownlint-cli2-rules-docker]
submodules: false
3 changes: 2 additions & 1 deletion lib/core/pmds/net/memif/pmd_memif_socket.c
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@
static int
cne_memif_check_socket_filename(const char *filename)
{
char *dir = NULL, *tmp;
char *dir = NULL;
const char *tmp;
uint32_t idx;
int ret = 0;

Expand Down
2 changes: 1 addition & 1 deletion lib/usr/app/jcfg/jcfg_lport.c
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ _lport_obj(struct json_object *obj, int flags, struct json_object *parent __cne_

lport = calloc(1, sizeof(jcfg_lport_t));
if (lport) {
char *c = strchr(key, ':');
const char *c = strchr(key, ':');

lport->cbtype = JCFG_LPORT_TYPE;
lport->name = strdup(key);
Expand Down
3 changes: 2 additions & 1 deletion lib/usr/app/jcfg/jcfg_lport_group.c
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,8 @@ check_allowed_range_characters(const char *s)
static int
parse_range(const char *range, uint16_t *v1, uint16_t *v2)
{
char *hyphen, *end = NULL;
const char *hyphen;
char *end = NULL;

if (!range || !v1 || !v2)
return -1;
Expand Down
2 changes: 1 addition & 1 deletion lib/usr/app/jcfg/jcfg_thread.c
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ _thd_obj(struct json_object *obj, int flags, struct json_object *parent __cne_un

thd = calloc(1, sizeof(jcfg_thd_t));
if (thd) {
char *p = strchr(key, ':');
const char *p = strchr(key, ':');
int idx;

thd->cbtype = JCFG_THREAD_TYPE;
Expand Down
Loading