Giter VIP home page Giter VIP logo

Comments (3)

geky avatar geky commented on June 2, 2024

Hi @RalfEsy, thanks for creating an issue.

littlefs tries to mimic POSIX here. So attributes remain attached to the metadata entry until the metadata entry ceases to exist.

Note that the definition of LFS_O_CREAT is "Create a file if it does not exist". So opening a a file with LFS_O_CREAT does not delete attributes because it doesn't delete the file.

A common pattern in POSIX is to create a file with a different name and use rename to replace the original file. This should clear any attributes on the file in littlefs.

You could also delete and recreate the file, but this would not be atomic.

from littlefs.

RalfEsy avatar RalfEsy commented on June 2, 2024

Hi @geky not shure if I got that right:

A common pattern in POSIX is to create a file with a different name and use rename to replace the original file. This should clear any attributes on the file in littlefs.

Do you mean that renaming an existing file will delete all of its attributes? Since I have seen the opposite, the attributes are still available even after a rename?

from littlefs.

geky avatar geky commented on June 2, 2024

Do you mean that renaming an existing file will delete all of its attributes? Since I have seen the opposite, the attributes are still available even after a rename?

Ah, so renaming a file does not delete attributes attached to the file. But if you rename a file on top of another file, it will replace the overlapped file, and in effect replace/delete any attributes that existed on the overlapped file.

For example (pseudocode):

open("A"); write("A"); close("A");
setattr("A", 'c', 1);
setattr("A", 'd', 2);

open("B"); write("B"); close("B");
setattr("B", 'c', 3);
// no 'd' attr

rename("B", "A");

getattr("A", 'c') => 3;
getattr("A", 'd') => LFS_ERR_NOATTR;

from littlefs.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.