From 4fbf51107f2f3c5578d2320539d217df8f6c5f87 Mon Sep 17 00:00:00 2001 From: Dominik Ermel Date: Tue, 14 Jul 2020 11:35:10 +0000 Subject: [PATCH] doc: relnotes: Add API change note for fs_open Update release notes API change section with information on change to fs_open parameter list. Signed-off-by: Dominik Ermel --- doc/releases/release-notes-2.4.rst | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/doc/releases/release-notes-2.4.rst b/doc/releases/release-notes-2.4.rst index 6d1094a40d811a..eb2111326ff1f3 100644 --- a/doc/releases/release-notes-2.4.rst +++ b/doc/releases/release-notes-2.4.rst @@ -65,6 +65,13 @@ API Changes been modified accordingly. The context argument has been renamed to user_data and all drivers have been modified against it as well. +* The :c:func:`fs_open` function now accepts open flags that are passed as + a third parameter. + All custom file system front-ends require change to the implementation + of ``open`` callback to accept the new parameter. + To maintain original behaviour within user code, two argument invocations + should be converted to pass a third argument ``FS_O_CREATE | FS_O_RDWR``. + Deprecated in this release ==========================